pub struct Seq {
pub children: Vec<Box<dyn MusicObject>>,
}Expand description
Sequential composition: children that play one after another.
Fields§
§children: Vec<Box<dyn MusicObject>>The objects played back to back in order.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Seq
impl !UnwindSafe for Seq
impl Freeze for Seq
impl Send for Seq
impl Sync for Seq
impl Unpin for Seq
impl UnsafeUnpin for Seq
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