pub type Result<T, E = Error> = Result<T, E>;Expand description
The result of an amount operation.
Aliased Type§
pub enum Result<T, E = Error> {
    Ok(T),
    Err(E),
}Variants§
Trait Implementations§
Source§impl<C> AddAssign<Amount<C>> for Result<Amount<C>>
 
impl<C> AddAssign<Amount<C>> for Result<Amount<C>>
Source§fn add_assign(&mut self, rhs: Amount<C>)
 
fn add_assign(&mut self, rhs: Amount<C>)
Performs the 
+= operation. Read moreSource§impl<C> SubAssign<Amount<C>> for Result<Amount<C>>
 
impl<C> SubAssign<Amount<C>> for Result<Amount<C>>
Source§fn sub_assign(&mut self, rhs: Amount<C>)
 
fn sub_assign(&mut self, rhs: Amount<C>)
Performs the 
-= operation. Read more