pub struct PlatformVaultSubmitResponse {
pub schema_version: u16,
pub contract_version: String,
pub preparation_id: String,
pub action: PlatformVaultAction,
pub wallet_address: String,
pub sponsored: bool,
pub signature: String,
pub status: PlatformVaultSubmissionStatus,
pub failure_code: Option<String>,
pub updated_at_ms: u64,
}Expand description
Durable outcome of a Vault submission, also returned by the status read.
Fields§
§schema_version: u16§contract_version: String§preparation_id: String§action: PlatformVaultAction§wallet_address: String§sponsored: bool§signature: String§status: PlatformVaultSubmissionStatus§failure_code: Option<String>Present only when status is failed.
updated_at_ms: u64Trait Implementations§
Source§impl Clone for PlatformVaultSubmitResponse
impl Clone for PlatformVaultSubmitResponse
Source§fn clone(&self) -> PlatformVaultSubmitResponse
fn clone(&self) -> PlatformVaultSubmitResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlatformVaultSubmitResponse
impl Debug for PlatformVaultSubmitResponse
Source§impl<'de> Deserialize<'de> for PlatformVaultSubmitResponse
impl<'de> Deserialize<'de> for PlatformVaultSubmitResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformVaultSubmitResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformVaultSubmitResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformVaultSubmitResponse
Source§impl Serialize for PlatformVaultSubmitResponse
impl Serialize for PlatformVaultSubmitResponse
Source§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
impl StructuralPartialEq for PlatformVaultSubmitResponse
Auto Trait Implementations§
impl Freeze for PlatformVaultSubmitResponse
impl RefUnwindSafe for PlatformVaultSubmitResponse
impl Send for PlatformVaultSubmitResponse
impl Sync for PlatformVaultSubmitResponse
impl Unpin for PlatformVaultSubmitResponse
impl UnsafeUnpin for PlatformVaultSubmitResponse
impl UnwindSafe for PlatformVaultSubmitResponse
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