Struct ft_storage_io::FTStorageState
source · pub struct FTStorageState {
pub ft_logic_id: ActorId,
pub transaction_status: Vec<(H256, bool)>,
pub balances: Vec<(ActorId, u128)>,
pub approvals: Vec<(ActorId, Vec<(ActorId, u128)>)>,
pub permits: Vec<(ActorId, u128)>,
}
Fields§
§ft_logic_id: ActorId
§transaction_status: Vec<(H256, bool)>
§balances: Vec<(ActorId, u128)>
§approvals: Vec<(ActorId, Vec<(ActorId, u128)>)>
§permits: Vec<(ActorId, u128)>
Trait Implementations§
source§impl Debug for FTStorageState
impl Debug for FTStorageState
source§impl Decode for FTStorageState
impl Decode for FTStorageState
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.
§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
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where I: Input,
Attempt to skip the encoded value from input. Read more
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
source§impl Default for FTStorageState
impl Default for FTStorageState
source§fn default() -> FTStorageState
fn default() -> FTStorageState
Returns the “default value” for a type. Read more
source§impl Encode for FTStorageState
impl Encode for FTStorageState
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.
§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl TypeInfo for FTStorageState
impl TypeInfo for FTStorageState
impl EncodeLike<FTStorageState> for FTStorageState
Auto Trait Implementations§
impl RefUnwindSafe for FTStorageState
impl Send for FTStorageState
impl Sync for FTStorageState
impl Unpin for FTStorageState
impl UnwindSafe for FTStorageState
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
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Decode
Self
and consume all of the given input data. Read more