pub struct GasReservationSlot {
pub amount: u64,
pub start: u32,
pub finish: u32,
}
Expand description
Gas reservation slot.
Fields§
§amount: u64
Amount of reserved gas.
start: u32
Block number when reservation is created.
finish: u32
Block number when reservation will expire.
Trait Implementations§
Source§impl Clone for GasReservationSlot
impl Clone for GasReservationSlot
Source§fn clone(&self) -> GasReservationSlot
fn clone(&self) -> GasReservationSlot
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 GasReservationSlot
impl Debug for GasReservationSlot
Source§impl Decode for GasReservationSlot
impl Decode for GasReservationSlot
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 GasReservationSlot
impl Encode for GasReservationSlot
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 GasReservationSlot
impl PartialEq for GasReservationSlot
Source§impl TypeInfo for GasReservationSlot
impl TypeInfo for GasReservationSlot
impl EncodeLike for GasReservationSlot
impl Eq for GasReservationSlot
impl StructuralPartialEq for GasReservationSlot
Auto Trait Implementations§
impl Freeze for GasReservationSlot
impl RefUnwindSafe for GasReservationSlot
impl Send for GasReservationSlot
impl Sync for GasReservationSlot
impl Unpin for GasReservationSlot
impl UnwindSafe for GasReservationSlot
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