pub struct TaxRevocationCheckResult {
pub checked: bool,
pub revoked: bool,
pub revocation_reason: Option<TaxRevocationReason>,
}Expand description
Revocation check result
Fields§
§checked: boolWas check performed
revoked: boolIs any claim revoked
revocation_reason: Option<TaxRevocationReason>Revocation reason (if revoked)
Trait Implementations§
Source§impl Clone for TaxRevocationCheckResult
impl Clone for TaxRevocationCheckResult
Source§fn clone(&self) -> TaxRevocationCheckResult
fn clone(&self) -> TaxRevocationCheckResult
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 TaxRevocationCheckResult
impl Debug for TaxRevocationCheckResult
Source§impl<'de> Deserialize<'de> for TaxRevocationCheckResult
impl<'de> Deserialize<'de> for TaxRevocationCheckResult
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
Source§impl PartialEq for TaxRevocationCheckResult
impl PartialEq for TaxRevocationCheckResult
Source§fn eq(&self, other: &TaxRevocationCheckResult) -> bool
fn eq(&self, other: &TaxRevocationCheckResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaxRevocationCheckResult
impl Serialize for TaxRevocationCheckResult
impl Eq for TaxRevocationCheckResult
impl StructuralPartialEq for TaxRevocationCheckResult
Auto Trait Implementations§
impl Freeze for TaxRevocationCheckResult
impl RefUnwindSafe for TaxRevocationCheckResult
impl Send for TaxRevocationCheckResult
impl Sync for TaxRevocationCheckResult
impl Unpin for TaxRevocationCheckResult
impl UnsafeUnpin for TaxRevocationCheckResult
impl UnwindSafe for TaxRevocationCheckResult
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