pub struct SampleLibrary {
    loaded_samples: HashMap<String, SAtom>,
    max_length_s: usize,
}
Expand description

Loads and stores samples, for use as SAtom parameters for nodes.

Fields

loaded_samples: HashMap<String, SAtom>max_length_s: usize

Implementations

Synchronous/blocking loading of a sample from path. Returns an SAtom reference that you can clone and send directly to the sampling node of your choice.

Keep in mind that blocking on I/O in the UI might not be desireable.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.