Type Alias fuse_backend_rs::transport::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
Specialized version of std::result::Result for transport layer operations.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}