pub enum StopDirection {
UnknownStopDirection,
StopDirectionStopUp,
StopDirectionStopDown,
}Expand description
Enum representing the possible direction of the stop order.
Variants§
Trait Implementations§
Source§impl Debug for StopDirection
impl Debug for StopDirection
Source§impl<'de> Deserialize<'de> for StopDirection
impl<'de> Deserialize<'de> for StopDirection
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 StopDirection
impl Display for StopDirection
Source§impl FromStr for StopDirection
impl FromStr for StopDirection
Source§impl PartialEq for StopDirection
impl PartialEq for StopDirection
Source§impl Serialize for StopDirection
impl Serialize for StopDirection
Source§impl TryFrom<&str> for StopDirection
impl TryFrom<&str> for StopDirection
Source§impl TryFrom<String> for StopDirection
impl TryFrom<String> for StopDirection
impl Eq for StopDirection
impl StructuralPartialEq for StopDirection
Auto Trait Implementations§
impl Freeze for StopDirection
impl RefUnwindSafe for StopDirection
impl Send for StopDirection
impl Sync for StopDirection
impl Unpin for StopDirection
impl UnwindSafe for StopDirection
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.