pub enum InputGeoPoint {
Empty,
InputGeoPoint(InputGeoPoint),
}Expand description
Variants§
Empty
InputGeoPoint(InputGeoPoint)
Trait Implementations§
Source§impl Clone for InputGeoPoint
impl Clone for InputGeoPoint
Source§fn clone(&self) -> InputGeoPoint
fn clone(&self) -> InputGeoPoint
Returns a duplicate 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 InputGeoPoint
impl Debug for InputGeoPoint
Source§impl Deserializable for InputGeoPoint
impl Deserializable for InputGeoPoint
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputGeoPoint> for InputGeoPoint
impl From<InputGeoPoint> for InputGeoPoint
Source§fn from(x: InputGeoPoint) -> Self
fn from(x: InputGeoPoint) -> Self
Converts to this type from the input type.
Source§impl From<InputGeoPointEmpty> for InputGeoPoint
impl From<InputGeoPointEmpty> for InputGeoPoint
Source§fn from(_x: InputGeoPointEmpty) -> Self
fn from(_x: InputGeoPointEmpty) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputGeoPoint
impl PartialEq for InputGeoPoint
Source§impl Serializable for InputGeoPoint
impl Serializable for InputGeoPoint
Source§impl TryFrom<InputGeoPoint> for InputGeoPoint
impl TryFrom<InputGeoPoint> for InputGeoPoint
Source§type Error = InputGeoPoint
type Error = InputGeoPoint
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputGeoPoint
Auto Trait Implementations§
impl Freeze for InputGeoPoint
impl RefUnwindSafe for InputGeoPoint
impl Send for InputGeoPoint
impl Sync for InputGeoPoint
impl Unpin for InputGeoPoint
impl UnsafeUnpin for InputGeoPoint
impl UnwindSafe for InputGeoPoint
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