pub struct TimelineType {
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>,
}Fields§
§name: Option<String>§color: Option<String>§comment: Option<String>§id: Option<String>§time_unit: Option<TimeUnitType>§track: Option<String>Trait Implementations§
Source§impl Clone for TimelineType
impl Clone for TimelineType
Source§fn clone(&self) -> TimelineType
fn clone(&self) -> TimelineType
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 TimelineType
impl Debug for TimelineType
Source§impl<'de> Deserialize<'de> for TimelineType
impl<'de> Deserialize<'de> for TimelineType
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 TimelineType
impl NameableTrait for TimelineType
Source§impl PartialEq for TimelineType
impl PartialEq for TimelineType
Source§fn eq(&self, other: &TimelineType) -> bool
fn eq(&self, other: &TimelineType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ReferenceableTrait for TimelineType
impl ReferenceableTrait for TimelineType
Source§impl Serialize for TimelineType
impl Serialize for TimelineType
impl StructuralPartialEq for TimelineType
Source§impl TimelineTrait for TimelineType
impl TimelineTrait for TimelineType
fn get_time_unit(&self) -> Option<&TimeUnitType>
fn get_track(&self) -> Option<&str>
Auto Trait Implementations§
impl Freeze for TimelineType
impl RefUnwindSafe for TimelineType
impl Send for TimelineType
impl Sync for TimelineType
impl Unpin for TimelineType
impl UnsafeUnpin for TimelineType
impl UnwindSafe for TimelineType
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