Type Alias NeoFSResult

Source
pub type NeoFSResult<T> = Result<T, NeoFSError>;
Expand description

Result type for NeoFS operations

Aliased Type§

pub enum NeoFSResult<T> {
    Ok(T),
    Err(NeoFSError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(NeoFSError)

Contains the error value