pub struct TokensV2VerificationExpressExecuteResponse {
pub code: Option<f64>,
pub error: Option<String>,
pub metadata_created: bool,
pub signature: Option<String>,
pub status: TokensV2VerificationExpressExecuteResponseStatus,
pub total_time: f64,
pub verification_created: bool,
}Fields§
§code: Option<f64>Error code (present on failure)
error: Option<String>Error message (present on failure)
metadata_created: boolWhether a metadata update request was created
signature: Option<String>Transaction signature on-chain (present on success)
status: TokensV2VerificationExpressExecuteResponseStatusWhether the transaction was executed successfully
total_time: f64Time taken to execute in milliseconds
verification_created: boolWhether a verification request was created
Trait Implementations§
Source§impl Clone for TokensV2VerificationExpressExecuteResponse
impl Clone for TokensV2VerificationExpressExecuteResponse
Source§fn clone(&self) -> TokensV2VerificationExpressExecuteResponse
fn clone(&self) -> TokensV2VerificationExpressExecuteResponse
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<'de> Deserialize<'de> for TokensV2VerificationExpressExecuteResponse
impl<'de> Deserialize<'de> for TokensV2VerificationExpressExecuteResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TokensV2VerificationExpressExecuteResponse
impl RefUnwindSafe for TokensV2VerificationExpressExecuteResponse
impl Send for TokensV2VerificationExpressExecuteResponse
impl Sync for TokensV2VerificationExpressExecuteResponse
impl Unpin for TokensV2VerificationExpressExecuteResponse
impl UnsafeUnpin for TokensV2VerificationExpressExecuteResponse
impl UnwindSafe for TokensV2VerificationExpressExecuteResponse
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