Struct rustsynth::node::Node

source ·
pub struct Node<'core> { /* private fields */ }
Expand description

A reference to a node in the constructed filter graph.

Implementations§

source§

impl<'core> Node<'core>

source

pub fn video_info(&self) -> Option<VideoInfo>

Returns the video info associated with this Node.

source

pub fn audio_info(&self) -> Option<AudioInfo>

Returns the audio info associated with this Node.

source

pub fn get_frame<'error>( &self, n: usize ) -> Result<FrameRef<'core>, GetFrameError<'error>>

Generates a frame directly.

The 'error lifetime is unbounded because this function always returns owned data.

Panics

Panics is n is greater than i32::max_value().

source

pub fn get_frame_async<F>(&self, n: usize, callback: F)where F: FnOnce(Result<FrameRef<'core>, GetFrameError<'_>>, usize, Node<'core>) + Send + 'core,

Requests the generation of a frame. When the frame is ready, a user-provided function is called.

If multiple frames were requested, they can be returned in any order.

The callback arguments are:

  • the generated frame or an error message if the generation failed,
  • the frame number (equal to n),
  • the node that generated the frame (the same as self).

If the callback panics, the process is aborted.

Panics

Panics is n is greater than i32::max_value().

source

pub fn media_type(&self) -> MediaType

Trait Implementations§

source§

impl<'core> Clone for Node<'core>

source§

fn clone(&self) -> Self

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<'core> Debug for Node<'core>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'core> Drop for Node<'core>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'map, 'elem: 'map> Value<'map, 'elem> for Node<'elem>

source§

fn get_from_map(map: &Map<'elem>, key: &str) -> Result<Self>

Retrieves the value from the map.
source§

fn store_in_map(map: &mut Map<'elem>, key: &str, x: &Self) -> Result<()>

Sets the property value in the map.
source§

impl<'map, 'elem: 'map> ValueNotArray<'map, 'elem> for Node<'elem>

source§

fn get_iter_from_map( map: &'map Map<'elem>, key: &str ) -> Result<ValueIter<'map, 'elem, Self>>

Retrieves an iterator over the values from the map.
source§

fn append_to_map(map: &mut Map<'elem>, key: &str, x: &Self) -> Result<()>

Appends the value to the map.
source§

impl<'core> Send for Node<'core>

source§

impl<'core> Sync for Node<'core>

Auto Trait Implementations§

§

impl<'core> RefUnwindSafe for Node<'core>

§

impl<'core> Unpin for Node<'core>

§

impl<'core> UnwindSafe for Node<'core>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.