pub type TransferResult = Result<u128, TransferError>;

Aliased Type§

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

Variants§

§1.0.0

Ok(u128)

Contains the success value

§1.0.0

Err(TransferError)

Contains the error value