Skip to main content

SourceWithContext

Struct SourceWithContext 

Source
pub struct SourceWithContext<Out, Ctx, Mat = NotUsed> { /* private fields */ }

Implementations§

Source§

impl<Out: Send + 'static, Ctx: Send + 'static, Mat: Send + 'static> SourceWithContext<Out, Ctx, Mat>

Source

pub fn as_source(self) -> Source<(Out, Ctx), Mat>

Source

pub fn run_collect(self) -> StreamResult<Vec<(Out, Ctx)>>

Source

pub fn map<Next, F>(self, f: F) -> SourceWithContext<Next, Ctx, Mat>
where Next: Send + 'static, F: Fn(Out) -> Next + Send + Sync + 'static,

Source

pub fn filter<F>(self, predicate: F) -> SourceWithContext<Out, Ctx, Mat>
where F: Fn(&Out) -> bool + Send + Sync + 'static,

Source

pub fn filter_not<F>(self, predicate: F) -> SourceWithContext<Out, Ctx, Mat>
where F: Fn(&Out) -> bool + Send + Sync + 'static,

Source

pub fn filter_map<Next, F>(self, f: F) -> SourceWithContext<Next, Ctx, Mat>
where Next: Send + 'static, F: Fn(Out) -> Option<Next> + Send + Sync + 'static,

Source

pub fn map_concat<Next, F, I>(self, f: F) -> SourceWithContext<Next, Ctx, Mat>
where Next: Send + 'static, F: Fn(Out) -> I + Send + Sync + 'static, I: IntoIterator<Item = Next>, I::IntoIter: Send + 'static, Ctx: Clone,

Source

pub fn map_async<Next, F, Fut>( self, parallelism: usize, f: F, ) -> SourceWithContext<Next, Ctx, Mat>
where Next: Send + 'static, F: Fn(Out) -> Fut + Send + Sync + 'static, Fut: Future<Output = StreamResult<Next>> + Send + 'static,

Source

pub fn map_context<CtxOut, F>(self, f: F) -> SourceWithContext<Out, CtxOut, Mat>
where CtxOut: Send + 'static, F: Fn(Ctx) -> CtxOut + Send + Sync + 'static,

Source

pub fn grouped(self, size: usize) -> SourceWithContext<Vec<Out>, Vec<Ctx>, Mat>

Source

pub fn sliding( self, size: usize, step: usize, ) -> SourceWithContext<Vec<Out>, Vec<Ctx>, Mat>
where Out: Clone, Ctx: Clone,

Source

pub fn via<Out2, Ctx2, FlowMat>( self, flow: FlowWithContext<Out, Ctx, Out2, Ctx2, FlowMat>, ) -> SourceWithContext<Out2, Ctx2, Mat>
where Out2: Send + 'static, Ctx2: Send + 'static, FlowMat: Send + 'static,

Source

pub fn via_mat<Out2, Ctx2, FlowMat, Combined, F>( self, flow: FlowWithContext<Out, Ctx, Out2, Ctx2, FlowMat>, combine: F, ) -> SourceWithContext<Out2, Ctx2, Combined>
where Out2: Send + 'static, Ctx2: Send + 'static, FlowMat: Send + 'static, Combined: Send + 'static, F: Fn(Mat, FlowMat) -> Combined + Send + Sync + 'static,

Source

pub fn to<SinkMat>(self, sink: Sink<(Out, Ctx), SinkMat>) -> RunnableGraph<Mat>
where SinkMat: Send + 'static,

Source

pub fn to_mat<SinkMat, Combined, F>( self, sink: Sink<(Out, Ctx), SinkMat>, combine: F, ) -> RunnableGraph<Combined>
where SinkMat: Send + 'static, Combined: Send + 'static, F: Fn(Mat, SinkMat) -> Combined + Send + Sync + 'static,

Trait Implementations§

Source§

impl<Out: Clone, Ctx: Clone, Mat: Clone> Clone for SourceWithContext<Out, Ctx, Mat>

Source§

fn clone(&self) -> SourceWithContext<Out, Ctx, Mat>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<Out, Ctx, Mat = NotUsed> !RefUnwindSafe for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat = NotUsed> !UnwindSafe for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat> Freeze for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat> Send for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat> Sync for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat> Unpin for SourceWithContext<Out, Ctx, Mat>

§

impl<Out, Ctx, Mat> UnsafeUnpin for SourceWithContext<Out, Ctx, Mat>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Message for T
where T: Any + Send + 'static,

Source§

fn from_boxed(m: BoxedMessage) -> Result<Self, BoxedDowncastErr>

Convert a BoxedMessage to this concrete type
Source§

fn box_message(self, pid: &ActorId) -> Result<BoxedMessage, BoxedDowncastErr>

Convert this message to a BoxedMessage
Source§

impl<T> OutputMessage for T
where T: Message + Clone,

Source§

impl<T> State for T
where T: Any + Send + 'static,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more