pub struct VerboseLocation {
pub lat: f32,
pub lon: f32,
pub date_time: Option<NaiveDateTime>,
}
Expand description
Location
which was configured in the input
Present only in verbose
mode. Verbosity can be set via Manifest::verbose_output
Fields§
§lat: f32
Latitude as defined in super::Coordinate
lon: f32
Longitude as defined in super::Coordinate
date_time: Option<NaiveDateTime>
time configured via Location::date_time
Trait Implementations§
Source§impl Clone for VerboseLocation
impl Clone for VerboseLocation
Source§fn clone(&self) -> VerboseLocation
fn clone(&self) -> VerboseLocation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VerboseLocation
impl Debug for VerboseLocation
Source§impl Default for VerboseLocation
impl Default for VerboseLocation
Source§fn default() -> VerboseLocation
fn default() -> VerboseLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerboseLocation
impl<'de> Deserialize<'de> for VerboseLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<Location> for VerboseLocation
impl From<Location> for VerboseLocation
Source§impl From<VerboseLocation> for Location
impl From<VerboseLocation> for Location
Source§fn from(value: VerboseLocation) -> Self
fn from(value: VerboseLocation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VerboseLocation
impl PartialEq for VerboseLocation
impl Copy for VerboseLocation
impl StructuralPartialEq for VerboseLocation
Auto Trait Implementations§
impl Freeze for VerboseLocation
impl RefUnwindSafe for VerboseLocation
impl Send for VerboseLocation
impl Sync for VerboseLocation
impl Unpin for VerboseLocation
impl UnwindSafe for VerboseLocation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more