NodeInfo

Struct NodeInfo 

Source
pub struct NodeInfo<'a> {
    pub id: Id,
    pub max_input_ports: u32,
    pub max_output_ports: u32,
    pub mask: NodeChangeMask,
    pub n_input_ports: u32,
    pub n_output_ports: u32,
    pub state: NodeState,
    pub error: Option<&'a str>,
    pub props: &'a Properties,
    pub params: &'a [(ParamType, ParamInfoFlags)],
}
Expand description

Node information that is provided in a NodeEvents::info event.

Fields§

§id: Id

The ID of the node.

§max_input_ports: u32

Maximum number of input ports.

§max_output_ports: u32

Maximum number of output ports.

§mask: NodeChangeMask

What changed since the last call.

§n_input_ports: u32

Number of input ports.

§n_output_ports: u32

Number of output ports.

§state: NodeState

The node’s current state.

§error: Option<&'a str>

The error reason if state is NodeState::Error.

§props: &'a Properties

The node’s properties.

§params: &'a [(ParamType, ParamInfoFlags)]

Node parameters that changed.

Auto Trait Implementations§

§

impl<'a> Freeze for NodeInfo<'a>

§

impl<'a> RefUnwindSafe for NodeInfo<'a>

§

impl<'a> Send for NodeInfo<'a>

§

impl<'a> Sync for NodeInfo<'a>

§

impl<'a> Unpin for NodeInfo<'a>

§

impl<'a> UnwindSafe for NodeInfo<'a>

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.