Trait async_ops::Assignable[][src]

pub trait Assignable<T> {
    fn from(value: T) -> Self;
}
Expand description

Trait for types that can be used with the Binary::op_assign to assign the result of the Binary operation to the left-hand operand.

See Async::assignable.

Required methods

Wrap the given value with Self.

Implementations on Foreign Types

Wrap the given Future with [BoxFuture].

Wrap the given Future with [LocalBoxFuture].

Implementors