pub struct MusicStackRenderOpts {
pub lower: LowerOpts,
pub bridge: BridgeOptions,
}Expand description
Options controlling how a score is lowered to MIDI and bridged to sound.
Fields§
§lower: LowerOptsOptions for lowering a score to a MIDI file.
bridge: BridgeOptionsOptions for bridging MIDI events to scheduled sound tones.
Trait Implementations§
Source§impl Clone for MusicStackRenderOpts
impl Clone for MusicStackRenderOpts
Source§fn clone(&self) -> MusicStackRenderOpts
fn clone(&self) -> MusicStackRenderOpts
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 MusicStackRenderOpts
impl Debug for MusicStackRenderOpts
Source§impl Default for MusicStackRenderOpts
impl Default for MusicStackRenderOpts
Source§fn default() -> MusicStackRenderOpts
fn default() -> MusicStackRenderOpts
Returns the “default value” for a type. Read more
Source§impl PartialEq for MusicStackRenderOpts
impl PartialEq for MusicStackRenderOpts
Source§fn eq(&self, other: &MusicStackRenderOpts) -> bool
fn eq(&self, other: &MusicStackRenderOpts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MusicStackRenderOpts
Auto Trait Implementations§
impl Freeze for MusicStackRenderOpts
impl RefUnwindSafe for MusicStackRenderOpts
impl Send for MusicStackRenderOpts
impl Sync for MusicStackRenderOpts
impl Unpin for MusicStackRenderOpts
impl UnsafeUnpin for MusicStackRenderOpts
impl UnwindSafe for MusicStackRenderOpts
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