[][src]Struct purezen::message::object::connection::table::Table

pub struct Table { /* fields omitted */ }

Connection tables (i.e. table of connection inlets or outlets)

Methods

impl Table[src]

pub fn new() -> Self[src]

Create a new connection table

pub fn len(&self) -> usize[src]

Get the number of inlets/outlets in the table

pub fn is_empty(&self) -> bool[src]

Is the table empty?

Important traits for Iter<'a>
pub fn iter(&self) -> Iter[src]

Iterate over this connection table

pub fn send_message<'pd, N>(
    &self,
    context: &mut Context<'pd>,
    outlet_index: Index,
    message: &Message<'pd, N>
) where
    N: ArrayLength<Atom<'pd>>, 
[src]

Sends the given message to all connected objects at the given outlet index.

Trait Implementations

impl Debug for Table[src]

impl Index<Index> for Table[src]

type Output = List

The returned type after indexing.

impl IndexMut<Index> for Table[src]

impl Default for Table[src]

Auto Trait Implementations

impl Send for Table

impl Sync for Table

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T[src]

type Output = T

Should always be Self