pub enum InputField {
OriginX,
OriginY,
DestinationX,
DestinationY,
OriginVertex,
DestinationVertex,
OriginEdge,
DestinationEdge,
GridSearch,
QueryWeightEstimate,
Custom(String),
}Variants§
OriginX
OriginY
DestinationX
DestinationY
OriginVertex
DestinationVertex
OriginEdge
DestinationEdge
GridSearch
QueryWeightEstimate
Custom(String)
Implementations§
Trait Implementations§
Source§impl Debug for InputField
impl Debug for InputField
Source§impl<'de> Deserialize<'de> for InputField
impl<'de> Deserialize<'de> for InputField
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 Display for InputField
impl Display for InputField
Source§impl From<UUIDJsonField> for InputField
impl From<UUIDJsonField> for InputField
Source§fn from(value: UUIDJsonField) -> Self
fn from(value: UUIDJsonField) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InputField
impl RefUnwindSafe for InputField
impl Send for InputField
impl Sync for InputField
impl Unpin for InputField
impl UnwindSafe for InputField
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more