pub struct VerificationStateData {
pub trusted_verifier_status: String,
pub verifications: Vec<VerificationView>,
pub verified_status: String,
}Available on crate feature
namespace-appbsky only.Expand description
Represents the verification information about the user this object is attached to.
Fields§
§trusted_verifier_status: StringThe user’s status as a trusted verifier.
verifications: Vec<VerificationView>All verifications issued by trusted verifiers on behalf of this user. Verifications by untrusted verifiers are not included.
verified_status: StringThe user’s status as a verified account.
Trait Implementations§
Source§impl Clone for VerificationStateData
impl Clone for VerificationStateData
Source§fn clone(&self) -> VerificationStateData
fn clone(&self) -> VerificationStateData
Returns a duplicate of the value. Read more
1.0.0 · 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 VerificationStateData
impl Debug for VerificationStateData
Source§impl<'de> Deserialize<'de> for VerificationStateData
impl<'de> Deserialize<'de> for VerificationStateData
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 VerificationStateData
impl PartialEq for VerificationStateData
Source§impl Serialize for VerificationStateData
impl Serialize for VerificationStateData
impl Eq for VerificationStateData
impl StructuralPartialEq for VerificationStateData
Auto Trait Implementations§
impl Freeze for VerificationStateData
impl RefUnwindSafe for VerificationStateData
impl Send for VerificationStateData
impl Sync for VerificationStateData
impl Unpin for VerificationStateData
impl UnwindSafe for VerificationStateData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.