jiff::util::rangeint

Trait TryRInto

Source
pub(crate) trait TryRInto<T>: Sized {
    // Required method
    fn try_rinto(self, what: &'static str) -> Result<T, Error>;
}

Required Methods§

Source

fn try_rinto(self, what: &'static str) -> Result<T, Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T, U> TryRInto<U> for T
where U: TryRFrom<T>,