pub enum GasReservationState {
Exists {
amount: u64,
start: u32,
finish: u32,
used: bool,
},
Created {
amount: u64,
duration: u32,
used: bool,
},
Removed {
expiration: u32,
},
}
Expand description
Gas reservation state.
Used to control whether reservation was created, removed or nothing happened.
Variants§
Exists
Reservation exists.
Fields
Created
Reservation will be created.
Fields
Removed
Reservation will be removed.
Trait Implementations§
Source§impl Clone for GasReservationState
impl Clone for GasReservationState
Source§fn clone(&self) -> GasReservationState
fn clone(&self) -> GasReservationState
Returns a copy 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 GasReservationState
impl Debug for GasReservationState
Source§impl Decode for GasReservationState
impl Decode for GasReservationState
Source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
Attempt to deserialise the value from input.
Source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Source§impl Encode for GasReservationState
impl Encode for GasReservationState
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl From<GasReservationSlot> for GasReservationState
impl From<GasReservationSlot> for GasReservationState
Source§fn from(slot: GasReservationSlot) -> Self
fn from(slot: GasReservationSlot) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GasReservationState
impl PartialEq for GasReservationState
impl Copy for GasReservationState
impl EncodeLike for GasReservationState
impl Eq for GasReservationState
impl StructuralPartialEq for GasReservationState
Auto Trait Implementations§
impl Freeze for GasReservationState
impl RefUnwindSafe for GasReservationState
impl Send for GasReservationState
impl Sync for GasReservationState
impl Unpin for GasReservationState
impl UnwindSafe for GasReservationState
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