conformal_component::parameters

Struct TimedEnumValues

Source
pub struct TimedEnumValues<I> { /* private fields */ }
Expand description

Represents an enum value that changes over the course of a buffer.

Each point represents a change in value at a given sample offset - the value remains constant until the next point (or the end of the buffer)

Some invariants:

  • There will always be at least one point
  • The first point’s sample_offset will be 0
  • sample_offsets will be monotonically increasing and only one point will appear for each sample_offset
  • All point’s value will be valid

Implementations§

Source§

impl<I: IntoIterator<Item = TimedValue<u32>> + Clone> TimedEnumValues<I>

Source

pub fn new( points: I, buffer_size: usize, valid_range: Range<u32>, ) -> Option<Self>

Construct a new TimedEnumValues from an iterator of points.

This will check the invariants for the curve, and if any are invalid, this will return None.

Note that here we refer to the enum by the index of the value, that is, the index of the value in the values array of the parameter.

§Examples
assert!(TimedEnumValues::new(
  vec![TimedValue { sample_offset: 0, value: 0 },
       TimedValue { sample_offset: 100, value: 1 }],
  128,
  0..2,
).is_some());
Source§

impl<I> TimedEnumValues<I>

Source

pub fn buffer_size(&self) -> usize

Get the size of the buffer this curve is defined over.

Trait Implementations§

Source§

impl<I: Clone> Clone for TimedEnumValues<I>

Source§

fn clone(&self) -> TimedEnumValues<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I: IntoIterator<Item = TimedValue<u32>>> IntoIterator for TimedEnumValues<I>

Source§

type Item = TimedValue<u32>

The type of the elements being iterated over.
Source§

type IntoIter = <I as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<I> Freeze for TimedEnumValues<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for TimedEnumValues<I>
where I: RefUnwindSafe,

§

impl<I> Send for TimedEnumValues<I>
where I: Send,

§

impl<I> Sync for TimedEnumValues<I>
where I: Sync,

§

impl<I> Unpin for TimedEnumValues<I>
where I: Unpin,

§

impl<I> UnwindSafe for TimedEnumValues<I>
where I: UnwindSafe,

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> 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.