Struct Manager

Source
pub struct Manager { /* private fields */ }

Implementations§

Source§

impl Manager

Source

pub fn new() -> Self

Source

pub fn get_node(&mut self, id: u32) -> Result<&mut Node, NodeError>

Find the node with the given ID in the graph.

§Errors

If the node is not present, returns NodeError::UnknownID.

Source

pub fn add_node( &mut self, parent_id: u32, b: Box<dyn Processor>, ) -> Result<u32, NodeError>

Find a child node for the node with the given ID. Returns the new node ID.

§Errors

If the parent node is not present, returns NodeError::UnknownID. If there are too many nodes, returns NodeError::TooManyChildren or NodeError::TooManyNodes.

Source

pub fn clear(&mut self, id: u32) -> Result<(), NodeError>

Remove all child nodes from the node with the given ID.

§Errors

If the node is not present, returns NodeError::UnknownID.

Source

pub fn write(&mut self, buf: &mut [i16])

Fill the given buffer with PCM sound values.

Auto Trait Implementations§

§

impl Freeze for Manager

§

impl !RefUnwindSafe for Manager

§

impl !Send for Manager

§

impl !Sync for Manager

§

impl Unpin for Manager

§

impl !UnwindSafe for Manager

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