pub type TransferResult = Result<(), TransferError>;
Expand description

A wrapper around Result that fixes the error variant to TransferError and result to ().

Aliased Type§

enum TransferResult {
    Ok(()),
    Err(TransferError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(TransferError)

Contains the error value