Trait wlan_fidl_ext::send_result_ext::SendResultExt

source ·
pub trait SendResultExt<T>: Sized {
    // Required methods
    fn format_send_err(self) -> Result<T, Error>;
    fn format_send_err_with_context<C>(self, context: C) -> Result<T, Error>
       where C: Display;
}

Required Methods§

source

fn format_send_err(self) -> Result<T, Error>

source

fn format_send_err_with_context<C>(self, context: C) -> Result<T, Error>
where C: Display,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> SendResultExt<T> for Result<T, Error>

source§

fn format_send_err(self) -> Result<T, Error>

source§

fn format_send_err_with_context<C>(self, context: C) -> Result<T, Error>
where C: Display,

Implementors§