pub enum SteeringModeConfig {
All,
OneAtATime,
}Expand description
Serializable mirror of SteeringMode.
Variants§
Trait Implementations§
Source§impl Clone for SteeringModeConfig
impl Clone for SteeringModeConfig
Source§fn clone(&self) -> SteeringModeConfig
fn clone(&self) -> SteeringModeConfig
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 SteeringModeConfig
impl Debug for SteeringModeConfig
Source§impl Default for SteeringModeConfig
impl Default for SteeringModeConfig
Source§fn default() -> SteeringModeConfig
fn default() -> SteeringModeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SteeringModeConfig
impl<'de> Deserialize<'de> for SteeringModeConfig
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<SteeringMode> for SteeringModeConfig
impl From<SteeringMode> for SteeringModeConfig
Source§fn from(m: SteeringMode) -> Self
fn from(m: SteeringMode) -> Self
Converts to this type from the input type.
Source§impl From<SteeringModeConfig> for SteeringMode
impl From<SteeringModeConfig> for SteeringMode
Source§fn from(m: SteeringModeConfig) -> Self
fn from(m: SteeringModeConfig) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SteeringModeConfig
impl PartialEq for SteeringModeConfig
Source§impl Serialize for SteeringModeConfig
impl Serialize for SteeringModeConfig
impl Copy for SteeringModeConfig
impl Eq for SteeringModeConfig
impl StructuralPartialEq for SteeringModeConfig
Auto Trait Implementations§
impl Freeze for SteeringModeConfig
impl RefUnwindSafe for SteeringModeConfig
impl Send for SteeringModeConfig
impl Sync for SteeringModeConfig
impl Unpin for SteeringModeConfig
impl UnsafeUnpin for SteeringModeConfig
impl UnwindSafe for SteeringModeConfig
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