pub struct Par {
pub children: Vec<Box<dyn MusicObject>>,
}Expand description
Parallel composition: children that sound simultaneously.
Fields§
§children: Vec<Box<dyn MusicObject>>The objects played at the same time.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Par
impl !UnwindSafe for Par
impl Freeze for Par
impl Send for Par
impl Sync for Par
impl Unpin for Par
impl UnsafeUnpin for Par
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