pub struct ComposeOperator<Op>where
Op: 'static + ComposableOperator,{ /* private fields */ }Implementations§
Source§impl<Op> ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> ComposeOperator<Op>where
Op: 'static + ComposableOperator,
pub fn new(operator: Op) -> ComposeOperator<Op>
Trait Implementations§
Source§impl<Op> Clone for ComposeOperator<Op>where
Op: Clone + 'static + ComposableOperator,
impl<Op> Clone for ComposeOperator<Op>where
Op: Clone + 'static + ComposableOperator,
Source§fn clone(&self) -> ComposeOperator<Op>
fn clone(&self) -> ComposeOperator<Op>
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<Op> ComposableOperator for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> ComposableOperator for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
type Subscriber<Destination: 'static + Subscriber<In = <ComposeOperator<Op> as ObservableOutput>::Out, InError = <ComposeOperator<Op> as ObservableOutput>::OutError> + Send + Sync> = <Op as ComposableOperator>::Subscriber<Destination>
fn operator_subscribe<Destination>(
&mut self,
destination: Destination,
) -> <ComposeOperator<Op> as ComposableOperator>::Subscriber<Destination>where
Destination: 'static + Subscriber<In = <ComposeOperator<Op> as ObservableOutput>::Out, InError = <ComposeOperator<Op> as ObservableOutput>::OutError> + Send + Sync,
Source§impl<Op> Debug for ComposeOperator<Op>where
Op: Debug + 'static + ComposableOperator,
impl<Op> Debug for ComposeOperator<Op>where
Op: Debug + 'static + ComposableOperator,
Source§impl<Op> From<Op> for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> From<Op> for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
Source§fn from(operator: Op) -> ComposeOperator<Op>
fn from(operator: Op) -> ComposeOperator<Op>
Converts to this type from the input type.
Source§impl<Op> ObservableOutput for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> ObservableOutput for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
type Out = <Op as ObservableOutput>::Out
type OutError = <Op as ObservableOutput>::OutError
Source§impl<Op> ObserverInput for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> ObserverInput for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
type In = <Op as ObserverInput>::In
type InError = <Op as ObserverInput>::InError
Source§impl<Op> WithPrimaryCategory for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
impl<Op> WithPrimaryCategory for ComposeOperator<Op>where
Op: 'static + ComposableOperator,
Auto Trait Implementations§
impl<Op> Freeze for ComposeOperator<Op>where
Op: Freeze,
impl<Op> RefUnwindSafe for ComposeOperator<Op>where
Op: RefUnwindSafe,
impl<Op> Send for ComposeOperator<Op>where
Op: Send,
impl<Op> Sync for ComposeOperator<Op>where
Op: Sync,
impl<Op> Unpin for ComposeOperator<Op>where
Op: Unpin,
impl<Op> UnwindSafe for ComposeOperator<Op>where
Op: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.