Skip to main content

ExtractUiaa

Trait ExtractUiaa 

Source
trait ExtractUiaa {
    // Required method
    fn uiaa_info(&self) -> Option<&UiaaInfo>;
}
Expand description

Helper trait to extract UiaaInfo.

Required Methods§

Source

fn uiaa_info(&self) -> Option<&UiaaInfo>

Extract the UiaaInfo from this type, if it contains one.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ExtractUiaa for Error

Source§

impl<T, Err> ExtractUiaa for Result<T, Err>
where Err: ExtractUiaa,

Implementors§