pub enum VerificationType {
Domain,
Dns,
Github,
Linkedin,
Gpg,
WellKnownUri,
}Expand description
The six verification types defined by AEO Protocol v0.1.
Variants§
Domain
HTTP domain control.
Dns
DNS TXT record.
Github
GitHub handle ownership.
LinkedIn profile ownership.
Gpg
GPG signature.
WellKnownUri
A separate well-known URI.
Trait Implementations§
Source§impl Clone for VerificationType
impl Clone for VerificationType
Source§fn clone(&self) -> VerificationType
fn clone(&self) -> VerificationType
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 VerificationType
impl Debug for VerificationType
Source§impl<'de> Deserialize<'de> for VerificationType
impl<'de> Deserialize<'de> for VerificationType
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 VerificationType
impl PartialEq for VerificationType
Source§fn eq(&self, other: &VerificationType) -> bool
fn eq(&self, other: &VerificationType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VerificationType
impl Serialize for VerificationType
impl Eq for VerificationType
impl StructuralPartialEq for VerificationType
Auto Trait Implementations§
impl Freeze for VerificationType
impl RefUnwindSafe for VerificationType
impl Send for VerificationType
impl Sync for VerificationType
impl Unpin for VerificationType
impl UnsafeUnpin for VerificationType
impl UnwindSafe for VerificationType
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