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