Struct Input

Source
pub struct Input<T>(/* private fields */);
Expand description

An identity operator that just returns the input.

Trait Implementations§

Source§

impl<T> Clone for Input<T>

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<T> Debug for Input<T>

Source§

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

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

impl<T> Default for Input<T>

Source§

fn default() -> Self

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

impl<T> Operator<Value<T>> for Input<T>

Source§

type Output = Value<T>

Output type.
Source§

fn next(&mut self, input: Value<T>) -> Self::Output

Produce the next output.
Source§

impl<T> Copy for Input<T>

Auto Trait Implementations§

§

impl<T> Freeze for Input<T>

§

impl<T> RefUnwindSafe for Input<T>

§

impl<T> Send for Input<T>

§

impl<T> Sync for Input<T>

§

impl<T> Unpin for Input<T>

§

impl<T> UnwindSafe for Input<T>

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<In, P, Out> ContextOperator<In> for P
where P: Operator<Value<In>, Output = Value<Out>>,

Source§

type Out = Out

The output type inside the Value wrapper.
Source§

fn next(&mut self, input: Value<In>) -> Value<Out>

Apply the operator.
Source§

impl<T, P> ContextOperatorExt<T> for P
where P: ContextOperator<T>,

Source§

fn boxed(self) -> BoxContextOperator<In, Self::Out>
where Self: Send + Sized + 'static,

Create a boxed ContextOperator.
Source§

fn with<L>(self, layer: L) -> L::Operator
where L: Layer<In, Self>, Self: Sized,

Add a layer.
Source§

fn finish(self) -> ContextedOperator<Self>
where Self: Sized,

Build into an operator without the Value wrapper.
Source§

fn finish_with_data(self, data: Map) -> ContextedOperator<Self>
where Self: Sized,

Build into an operator without the Value wrapper with the given data context.
Source§

fn cache(self, length: usize) -> CacheOperator<Self>
where Self: Sized,

Add a cache layer with the given length. Read more
Source§

fn insert_env<R, Out>(self, f: impl Fn() -> R) -> InsertOperator<Self, R>
where R: for<'a> RefOperator<'a, In, Output = Out>, Out: Send + Sync + 'static, Self: Sized,

Add a Insert layer with the given RefOperator constructor (i.e. a function that returns a RefOperator). Read more
Source§

fn insert_env_if<R, Out>( self, enable: bool, f: impl Fn() -> R, ) -> Either<InsertOperator<Self, R>, Self>
where R: for<'a> RefOperator<'a, In, Output = Out>, Out: Send + Sync + 'static, Self: Sized,

Optionally add a Insert layer with the given RefOperator constructor. Read more
Source§

fn insert_data<R, Out>(self, f: impl Fn() -> R) -> InsertDataOperator<Self, R>
where R: for<'a> RefOperator<'a, In, Output = Option<Out>>, Out: Send + Sync + 'static, Self: Sized,

Add a InsertData layer with the given RefOperator constructor. (i.e. a function that returns a RefOperator). Read more
Source§

fn insert_data_if<R, Out>( self, enable: bool, f: impl Fn() -> R, ) -> Either<InsertDataOperator<Self, R>, Self>
where R: for<'a> RefOperator<'a, In, Output = Option<Out>>, Out: Send + Sync + 'static, Self: Sized,

Optionally add a InsertData layer with the given RefOperator constructor. Read more
Source§

fn insert<R, Env, Data>( self, f: impl Fn() -> R, ) -> InsertWithDataOperator<Self, R>
where R: for<'a> RefOperator<'a, In, Output = (Env, Option<Data>)>, Env: Send + Sync + 'static, Data: Send + Sync + 'static, Self: Sized,

Add a InsertWithData layer with the given RefOperator constructor. (i.e. a function that returns a RefOperator). Read more
Source§

fn insert_if<R, Env, Data>( self, enable: bool, f: impl Fn() -> R, ) -> Either<InsertWithDataOperator<Self, R>, Self>
where R: for<'a> RefOperator<'a, In, Output = (Env, Option<Data>)>, Env: Send + Sync + 'static, Data: Send + Sync + 'static, Self: Sized,

Optionally add a InsertWithData layer with the given RefOperator constructor. Read more
Source§

fn inspect<F>(self, f: F) -> InspectOperator<Self, F>
where F: Fn(&In, &Context) + Clone, Self: Sized,

Add an inspect layer with the given closure.
Source§

fn provide<D>(self, data: D) -> AddDataOperator<D, Self>
where D: Clone + Send + Sync + 'static, Self: Sized,

Provide data to the context.
Source§

fn provide_if<D>( self, data: Option<D>, ) -> Either<AddDataOperator<D, Self>, Self>
where D: Clone + Send + Sync + 'static, Self: Sized,

Optionally provide data to the context. Read more
Source§

fn provide_with<D>( self, provider: impl Fn() -> Option<D> + Send + Sync + 'static, ) -> AddDataOperator<D, Self>
where D: Send + Sync + 'static, Self: Sized,

Provide data to the context with the given data provider.
Source§

fn provide_with_if<D>( self, enable: bool, provider: impl Fn() -> Option<D> + Send + Sync + 'static, ) -> Either<AddDataOperator<D, Self>, Self>
where D: Send + Sync + 'static, Self: Sized,

Optionally provide data to the context with the given data provider. Read more
Source§

fn from_context<D>(self) -> AddDataOperator<D, Self>
where D: Send + Sync + 'static, Self: Sized,

👎Deprecated: use data_from_context instead
Declare that the data of type D is in the context.
Source§

fn data_from_context<D>(self) -> AddDataOperator<D, Self>
where D: Send + Sync + 'static, Self: Sized,

Declare that the data of type D is in the data context.
Source§

fn then_with<Out, F, Builder>(self, builder: Builder) -> ThenOperator<Self, F>
where F: FnMut(Self::Out, &Context) -> Out + Clone, Builder: Fn() -> F, Self: Sized,

Add a closure that will be called when the inner operator is evaluated.
Source§

fn with_if<L>(self, layer: Option<L>) -> Either<L::Operator, Self>
where L: Layer<In, Self>, L::Operator: ContextOperator<In, Out = Self::Out>, Self: Sized,

Optionally add a layer.
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> IntoEither for T

Source§

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

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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

impl<I, T> OperatorExt<I> for T
where T: Operator<I>,

Source§

fn then<P2>(self, other: P2) -> Then<I, Self, P2>
where Self: Sized, P2: Operator<Self::Output>,

Combine with another operator that uses Self::Output as input type. Read more
Source§

fn facet<P2>(self, other: P2) -> Facet<I, Self, P2>
where Self: Sized, P2: Operator<I>,

Combine with another operator with the same input type. Read more
Source§

fn map<O, F>(self, f: F) -> Then<I, Self, Map<F>>
where Self: Sized, F: FnMut(Self::Output) -> O,

Map the output after performing the operator.
Source§

fn boxed<'a>(self) -> BoxOperator<'a, I, Self::Output>
where Self: Sized + Send + 'a,

Convert into a BoxOperator.
Source§

fn boxed_local<'a>(self) -> LocalBoxOperator<'a, I, Self::Output>
where Self: Sized + 'a,

Convert into a LocalBoxOperator.
Source§

fn into_async_operator(self) -> Next<Self>
where Self: Sized,

Convert into a [AsyncOperator].
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.