pub type OneWireResult<T, E> = Result<T, OneWireError<E>>;Expand description
Error type for 1-Wire operations.
Aliased Type§
pub enum OneWireResult<T, E> {
Ok(T),
Err(OneWireError<E>),
}pub type OneWireResult<T, E> = Result<T, OneWireError<E>>;Error type for 1-Wire operations.
pub enum OneWireResult<T, E> {
Ok(T),
Err(OneWireError<E>),
}