Skip to main content

ErrorCC

Trait ErrorCC 

Source
pub trait ErrorCC<T> {
    // Required method
    fn cc(self) -> Result<T, Report<Error>>;
}

Required Methods§

Source

fn cc(self) -> Result<T, Report<Error>>

Implementations on Foreign Types§

Source§

impl<T, E> ErrorCC<T> for Result<T, E>
where E: Error + Send + Sync + 'static,

Source§

fn cc(self) -> Result<T, Report<Error>>

Implementors§