pub struct ScoreVoice {
pub id: ObjectId,
pub name: String,
pub duration: Time,
}Expand description
Voice metadata retained by non-staff event representations.
Fields§
§id: ObjectIdStable voice identity.
name: StringHuman-facing voice name.
duration: TimeExact voice span, including trailing silence.
Trait Implementations§
Source§impl Clone for ScoreVoice
impl Clone for ScoreVoice
Source§fn clone(&self) -> ScoreVoice
fn clone(&self) -> ScoreVoice
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 ScoreVoice
impl Debug for ScoreVoice
impl Eq for ScoreVoice
Source§impl PartialEq for ScoreVoice
impl PartialEq for ScoreVoice
impl StructuralPartialEq for ScoreVoice
Auto Trait Implementations§
impl Freeze for ScoreVoice
impl RefUnwindSafe for ScoreVoice
impl Send for ScoreVoice
impl Sync for ScoreVoice
impl Unpin for ScoreVoice
impl UnsafeUnpin for ScoreVoice
impl UnwindSafe for ScoreVoice
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