Trait TryFromFbs

Source
pub trait TryFromFbs<T>: Sized {
    // Required method
    fn try_decode_fbs(value: T) -> Result<Self, WsApiError>;
}

Required Methods§

Source

fn try_decode_fbs(value: T) -> Result<Self, WsApiError>

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§