Trait signal_processing::util::ResultOrOk
source · pub trait ResultOrOk<T, E>{
// Required methods
fn into_result(self) -> Result<T, E>
where Self: Sized,
T: Sized,
E: Sized;
fn as_result(&self) -> Result<&T, &E>;
fn as_result_mut(&mut self) -> Result<&mut T, &mut E>;
}