pub enum EnvelopeStatus {
InsideEnvelope,
NotCertified,
}Expand description
Envelope monitor status exposed to runtime consumers.
Variants§
Trait Implementations§
Source§impl Clone for EnvelopeStatus
impl Clone for EnvelopeStatus
Source§fn clone(&self) -> EnvelopeStatus
fn clone(&self) -> EnvelopeStatus
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 EnvelopeStatus
Source§impl Debug for EnvelopeStatus
impl Debug for EnvelopeStatus
impl Eq for EnvelopeStatus
Source§impl PartialEq for EnvelopeStatus
impl PartialEq for EnvelopeStatus
Source§fn eq(&self, other: &EnvelopeStatus) -> bool
fn eq(&self, other: &EnvelopeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnvelopeStatus
Auto Trait Implementations§
impl Freeze for EnvelopeStatus
impl RefUnwindSafe for EnvelopeStatus
impl Send for EnvelopeStatus
impl Sync for EnvelopeStatus
impl Unpin for EnvelopeStatus
impl UnsafeUnpin for EnvelopeStatus
impl UnwindSafe for EnvelopeStatus
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