Struct PipelineBuilder

Source
pub struct PipelineBuilder<S: PipelineState, T> { /* private fields */ }

Implementations§

Source§

impl<T> PipelineBuilder<Open, T>

Source

pub fn new() -> Self

Source§

impl<S: PipelineState, T> PipelineBuilder<S, T>

Source

pub fn build(self) -> NodeRef<T>

Source§

impl<T> PipelineBuilder<Open, T>

Source

pub fn attach<U: Into<NodeRef<T>>>(self, node: U) -> Self

Source

pub fn attach_handler<N: Into<String>, U: Into<SomeDataHandler<T>>>( self, name: N, handler: U, ) -> Self

Source

pub fn demux<U: Into<String>>( self, name: U, demuxer: impl DataDemuxer<T> + Send + 'static, ) -> PipelineBuilder<Terminated, T>

Trait Implementations§

Source§

impl<T> Default for PipelineBuilder<Open, T>

Source§

fn default() -> Self

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

impl<S: Default + PipelineState, T: Default> Default for PipelineBuilder<S, T>

Source§

fn default() -> PipelineBuilder<S, T>

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

Auto Trait Implementations§

§

impl<S, T> Freeze for PipelineBuilder<S, T>

§

impl<S, T> RefUnwindSafe for PipelineBuilder<S, T>
where S: RefUnwindSafe,

§

impl<S, T> Send for PipelineBuilder<S, T>
where S: Send,

§

impl<S, T> Sync for PipelineBuilder<S, T>
where S: Sync,

§

impl<S, T> Unpin for PipelineBuilder<S, T>
where S: Unpin,

§

impl<S, T> UnwindSafe for PipelineBuilder<S, T>
where S: UnwindSafe,

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.