Struct tea_sdk::vmh::state::dump::DumpGlobalStateResponse
pub struct DumpGlobalStateResponse {
pub last_exec_tsid: TsidReadable,
pub tapp_store_key: Option<String>,
pub aes_keys: Vec<(String, String)>,
pub failed_payments: Vec<(String, String)>,
pub consume_account_keys: Vec<(String, String)>,
pub auth_keys: Vec<(u128, String)>,
pub session_keys: Vec<(String, String, String)>,
}
Fields§
§last_exec_tsid: TsidReadable
§tapp_store_key: Option<String>
§aes_keys: Vec<(String, String)>
items fields:
- token id
- key
failed_payments: Vec<(String, String)>
items fields:
- token id
- payments
consume_account_keys: Vec<(String, String)>
items fields:
- token id
- key
auth_keys: Vec<(u128, String)>
items fields:
- auth id
- auth key
session_keys: Vec<(String, String, String)>
items fields:
- token id
- account id
- session key
Trait Implementations§
§impl Debug for DumpGlobalStateResponse
impl Debug for DumpGlobalStateResponse
§impl Default for DumpGlobalStateResponse
impl Default for DumpGlobalStateResponse
§fn default() -> DumpGlobalStateResponse
fn default() -> DumpGlobalStateResponse
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for DumpGlobalStateResponse
impl<'de> Deserialize<'de> for DumpGlobalStateResponse
§fn deserialize<__D>(
__deserializer: __D
) -> Result<DumpGlobalStateResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<DumpGlobalStateResponse, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<DumpGlobalStateIntermediate> for DumpGlobalStateResponse
impl From<DumpGlobalStateIntermediate> for DumpGlobalStateResponse
§fn from(val: DumpGlobalStateIntermediate) -> DumpGlobalStateResponse
fn from(val: DumpGlobalStateIntermediate) -> DumpGlobalStateResponse
Converts to this type from the input type.
§impl Serialize for DumpGlobalStateResponse
impl Serialize for DumpGlobalStateResponse
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for DumpGlobalStateResponse
impl Send for DumpGlobalStateResponse
impl Sync for DumpGlobalStateResponse
impl Unpin for DumpGlobalStateResponse
impl UnwindSafe for DumpGlobalStateResponse
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