pub struct AudioClipGroup {
pub id: String,
pub muted: bool,
pub audio_clips: Vec<AudioClip>,
}Expand description
TS timelineInformation.audioClipGroups[] element.
Fields§
§id: String§muted: bool§audio_clips: Vec<AudioClip>Trait Implementations§
Source§impl Clone for AudioClipGroup
impl Clone for AudioClipGroup
Source§fn clone(&self) -> AudioClipGroup
fn clone(&self) -> AudioClipGroup
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 AudioClipGroup
impl Debug for AudioClipGroup
Source§impl Default for AudioClipGroup
impl Default for AudioClipGroup
Source§fn default() -> AudioClipGroup
fn default() -> AudioClipGroup
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AudioClipGroup
impl RefUnwindSafe for AudioClipGroup
impl Send for AudioClipGroup
impl Sync for AudioClipGroup
impl Unpin for AudioClipGroup
impl UnsafeUnpin for AudioClipGroup
impl UnwindSafe for AudioClipGroup
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