pub struct CreatorNote {
pub timestamp_ms: Option<u64>,
pub text: String,
}Expand description
Creator/producer note with optional timestamp
Fields§
§timestamp_ms: Option<u64>Optional timestamp (None = applies to whole track)
text: StringNote text
Trait Implementations§
Source§impl Clone for CreatorNote
impl Clone for CreatorNote
Source§fn clone(&self) -> CreatorNote
fn clone(&self) -> CreatorNote
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 CreatorNote
impl Debug for CreatorNote
Source§impl<'de> Deserialize<'de> for CreatorNote
impl<'de> Deserialize<'de> for CreatorNote
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
Auto Trait Implementations§
impl Freeze for CreatorNote
impl RefUnwindSafe for CreatorNote
impl Send for CreatorNote
impl Sync for CreatorNote
impl Unpin for CreatorNote
impl UnwindSafe for CreatorNote
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