UvsTimeoutFrom

Trait UvsTimeoutFrom 

Source
pub trait UvsTimeoutFrom<S> {
    // Required method
    fn from_timeout(info: S) -> Self;
}

Required Methods§

Source

fn from_timeout(info: S) -> Self

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> UvsTimeoutFrom<&str> for T
where T: From<UvsReason>,

Source§

impl<T> UvsTimeoutFrom<String> for T
where T: From<UvsReason>,