pub struct VerifyTransferApproval {
    pub approved_for_all: bool,
    pub first_unapproved_token: Option<String>,
}Expand description
response of VerifyTransferApproval
verify that the specified address has approval to transfer every listed token
Fields
approved_for_all: booltrue if address has transfer approval for all tokens in the list
first_unapproved_token: Option<String>first token in the list that address does not have transfer approval
Trait Implementations
sourceimpl Clone for VerifyTransferApproval
 
impl Clone for VerifyTransferApproval
sourcefn clone(&self) -> VerifyTransferApproval
 
fn clone(&self) -> VerifyTransferApproval
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for VerifyTransferApproval
 
impl Debug for VerifyTransferApproval
sourceimpl<'de> Deserialize<'de> for VerifyTransferApproval
 
impl<'de> Deserialize<'de> for VerifyTransferApproval
sourcefn 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
sourceimpl JsonSchema for VerifyTransferApproval
 
impl JsonSchema for VerifyTransferApproval
sourcefn schema_name() -> String
 
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
 
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
 
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
sourceimpl PartialEq<VerifyTransferApproval> for VerifyTransferApproval
 
impl PartialEq<VerifyTransferApproval> for VerifyTransferApproval
sourcefn eq(&self, other: &VerifyTransferApproval) -> bool
 
fn eq(&self, other: &VerifyTransferApproval) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &VerifyTransferApproval) -> bool
 
fn ne(&self, other: &VerifyTransferApproval) -> bool
This method tests for !=.
sourceimpl Serialize for VerifyTransferApproval
 
impl Serialize for VerifyTransferApproval
impl StructuralPartialEq for VerifyTransferApproval
Auto Trait Implementations
impl RefUnwindSafe for VerifyTransferApproval
impl Send for VerifyTransferApproval
impl Sync for VerifyTransferApproval
impl Unpin for VerifyTransferApproval
impl UnwindSafe for VerifyTransferApproval
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more