pub struct LanesType {
pub name: Option<String>,
pub color: Option<String>,
pub comment: Option<String>,
pub id: Option<String>,
pub time_unit: Option<TimeUnitType>,
pub track: Option<String>,
pub content: Vec<LanesTypeContent>,
}Fields§
§name: Option<String>§color: Option<String>§comment: Option<String>§id: Option<String>§time_unit: Option<TimeUnitType>§track: Option<String>§content: Vec<LanesTypeContent>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LanesType
impl<'de> Deserialize<'de> for LanesType
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 NameableTrait for LanesType
impl NameableTrait for LanesType
impl StructuralPartialEq for LanesType
Source§impl TimelineTrait for LanesType
impl TimelineTrait for LanesType
fn get_time_unit(&self) -> Option<&TimeUnitType>
fn get_track(&self) -> Option<&str>
Auto Trait Implementations§
impl Freeze for LanesType
impl RefUnwindSafe for LanesType
impl Send for LanesType
impl Sync for LanesType
impl Unpin for LanesType
impl UnsafeUnpin for LanesType
impl UnwindSafe for LanesType
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