pub struct LatLong { /* private fields */ }Expand description
Native representation of the LatLong schema data type
A LatLong object is comprised of a latitude, longitude pair represented as signed integers
Implementations
Trait Implementations
sourceimpl FromNative<LatLong> for LatLong
impl FromNative<LatLong> for LatLong
fn from_native(lat_long: LatLong) -> Result<Self, ProtoConversionError>
sourceimpl FromProto<LatLong> for LatLong
impl FromProto<LatLong> for LatLong
fn from_proto(lat_long: LatLong) -> Result<Self, ProtoConversionError>
sourceimpl IntoNative<LatLong> for LatLong
impl IntoNative<LatLong> for LatLong
fn into_native(self) -> Result<T, ProtoConversionError>
sourceimpl IntoProto<LatLong> for LatLong
impl IntoProto<LatLong> for LatLong
fn into_proto(self) -> Result<T, ProtoConversionError>
impl StructuralPartialEq for LatLong
Auto Trait Implementations
impl RefUnwindSafe for LatLong
impl Send for LatLong
impl Sync for LatLong
impl Unpin for LatLong
impl UnwindSafe for LatLong
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more