Struct Unconstrained

struct Unconstrained<F> { ... }

Future for the unconstrained method.

Implementations

impl<'__pin, F> Unpin for Unconstrained<F>

impl<F> Freeze for Unconstrained<F>

impl<F> Future for Unconstrained<F>

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>

impl<F> IntoFuture for Unconstrained<F>

fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture

impl<F> RefUnwindSafe for Unconstrained<F>

impl<F> Send for Unconstrained<F>

impl<F> Sync for Unconstrained<F>

impl<F> UnsafeUnpin for Unconstrained<F>

impl<F> UnwindSafe for Unconstrained<F>

impl<T> Any for Unconstrained<F>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Unconstrained<F>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Unconstrained<F>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for Unconstrained<F>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Unconstrained<F>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for Unconstrained<F>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Unconstrained<F>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>