pub enum InflationResult {
INFLATION_SUCCESS(Vec<InflationPayout>),
default,
}
Variants§
INFLATION_SUCCESS(Vec<InflationPayout>)
default
Trait Implementations§
Source§impl Clone for InflationResult
impl Clone for InflationResult
Source§fn clone(&self) -> InflationResult
fn clone(&self) -> InflationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InflationResult
impl Debug for InflationResult
Source§impl<Out: Write> Pack<Out> for InflationResult
impl<Out: Write> Pack<Out> for InflationResult
Source§impl PartialEq for InflationResult
impl PartialEq for InflationResult
Source§impl<In: Read> Unpack<In> for InflationResult
impl<In: Read> Unpack<In> for InflationResult
impl Eq for InflationResult
impl StructuralPartialEq for InflationResult
Auto Trait Implementations§
impl Freeze for InflationResult
impl RefUnwindSafe for InflationResult
impl Send for InflationResult
impl Sync for InflationResult
impl Unpin for InflationResult
impl UnwindSafe for InflationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more