pub struct Part(/* private fields */);
Expand description

Wraps another element, indicating that notes rendered from the wrapped element are to be played by a single instrument at a time.

Implementations§

source§

impl Part

source

pub fn instrument(wrapped_element: impl Element) -> Part

Creates a new instrument part from the given element.

source

pub fn percussion(wrapped_element: impl Element) -> Part

Creates a new percussion part from the given element.

source

pub fn wrapped_element(&self) -> Option<&dyn Element>

Returns the wrapped element.

source

pub fn part_type(&self) -> &PartType

Returns the type of this part.

Trait Implementations§

source§

impl Debug for Part

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Element for Part

source§

fn wrapped_element(&self) -> Option<&dyn Element>

Wrapped element.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Part

§

impl !Send for Part

§

impl !Sync for Part

§

impl Unpin for Part

§

impl !UnwindSafe for Part

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AsAny for T
where T: Element,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts this to a [&dyn Any].
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoCompositionSegment for T
where T: Element,

source§

fn into_segment(self, timing: impl Into<Timing>) -> Segment

Converts this element into a Segment spanning the given time range.

source§

fn into_named_segment(self, name: String, timing: impl Into<Timing>) -> Segment

Converts this element into a named (fixed Rng) Segment spanning the given time range. Naming segments ensures that any other sibling segments with the same name will be seeded identically.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V