#[repr(i32)]pub enum VerificationState {
DECLARATION = 0,
UNVERIFIED = 1,
}Expand description
The verification state of the extension range.
Variants§
Implementations§
Source§impl VerificationState
impl VerificationState
Sourcepub const Declaration: Self = Self::DECLARATION
pub const Declaration: Self = Self::DECLARATION
Idiomatic alias for Self::DECLARATION; Debug prints the variant name.
Sourcepub const Unverified: Self = Self::UNVERIFIED
pub const Unverified: Self = Self::UNVERIFIED
Idiomatic alias for Self::UNVERIFIED; Debug prints the variant name.
Trait Implementations§
Source§impl Clone for VerificationState
impl Clone for VerificationState
Source§fn clone(&self) -> VerificationState
fn clone(&self) -> VerificationState
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 moreimpl Copy for VerificationState
Source§impl Debug for VerificationState
impl Debug for VerificationState
Source§impl Default for VerificationState
impl Default for VerificationState
Source§impl Enumeration for VerificationState
impl Enumeration for VerificationState
Source§fn proto_name(&self) -> &'static str
fn proto_name(&self) -> &'static str
The name of this enum variant as it appears in the
.proto file.impl Eq for VerificationState
Source§impl Hash for VerificationState
impl Hash for VerificationState
Source§impl PartialEq for VerificationState
impl PartialEq for VerificationState
Source§fn eq(&self, other: &VerificationState) -> bool
fn eq(&self, other: &VerificationState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VerificationState
Auto Trait Implementations§
impl Freeze for VerificationState
impl RefUnwindSafe for VerificationState
impl Send for VerificationState
impl Sync for VerificationState
impl Unpin for VerificationState
impl UnsafeUnpin for VerificationState
impl UnwindSafe for VerificationState
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