Trait slack_hook::TryInto

source ·
pub trait TryInto<T>: Sized {
    type Err;

    fn try_into(self) -> Result<T, Self::Err>;
}
Expand description

Waiting to stabilize: https://github.com/rust-lang/rust/issues/33417

An attempted conversion that consumes self, which may or may not be expensive.

Library authors should not directly implement this trait, but should prefer implementing the TryFrom trait, which offers greater flexibility and provides an equivalent TryInto implementation for free, thanks to a blanket implementation in the standard library.

Required Associated Types

The type returned in the event of a conversion error.

Required Methods

Performs the conversion.

Implementors