pub struct TrackConfig {
pub name: String,
pub approach: String,
pub model: Option<String>,
}Fields§
§name: String§approach: String§model: Option<String>Trait Implementations§
Source§impl Clone for TrackConfig
impl Clone for TrackConfig
Source§fn clone(&self) -> TrackConfig
fn clone(&self) -> TrackConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrackConfig
impl Debug for TrackConfig
Source§impl<'de> Deserialize<'de> for TrackConfig
impl<'de> Deserialize<'de> for TrackConfig
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 PartialEq for TrackConfig
impl PartialEq for TrackConfig
Source§fn eq(&self, other: &TrackConfig) -> bool
fn eq(&self, other: &TrackConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TrackConfig
impl Serialize for TrackConfig
impl StructuralPartialEq for TrackConfig
Auto Trait Implementations§
impl Freeze for TrackConfig
impl RefUnwindSafe for TrackConfig
impl Send for TrackConfig
impl Sync for TrackConfig
impl Unpin for TrackConfig
impl UnsafeUnpin for TrackConfig
impl UnwindSafe for TrackConfig
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