Struct TimeDiff
A simple struct to represent time difference.
					
			struct TimeDiff
			;
					
				
			D's std.datetime does not have a type that is closely compatible with the MySQL interpretation of a time difference, so we define a struct here to hold such values.
Fields
| Name | Type | Description | 
|---|---|---|
							days
						 | 
						int | |
							hours
						 | 
						ubyte | |
							minutes
						 | 
						ubyte | |
							negative
						 | 
						bool | |
							seconds
						 | 
						ubyte |