pub struct TransformSourceWithOperator<T, R>{ /* private fields */ }Expand description
A source that applies a single operator transformation
Implementations§
Trait Implementations§
Source§impl<T, R> Clone for TransformSourceWithOperator<T, R>
impl<T, R> Clone for TransformSourceWithOperator<T, R>
Source§fn clone(&self) -> TransformSourceWithOperator<T, R>
fn clone(&self) -> TransformSourceWithOperator<T, R>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T, R> Source<R> for TransformSourceWithOperator<T, R>
impl<T, R> Source<R> for TransformSourceWithOperator<T, R>
Source§fn init<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = StreamResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn init<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = StreamResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Initialize the source
Auto Trait Implementations§
impl<T, R> Freeze for TransformSourceWithOperator<T, R>
impl<T, R> !RefUnwindSafe for TransformSourceWithOperator<T, R>
impl<T, R> Send for TransformSourceWithOperator<T, R>where
R: Send,
impl<T, R> Sync for TransformSourceWithOperator<T, R>where
R: Sync,
impl<T, R> Unpin for TransformSourceWithOperator<T, R>where
R: Unpin,
impl<T, R> !UnwindSafe for TransformSourceWithOperator<T, R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more