pub enum AuditProducer {
Server,
Client,
Unknown(Unknown),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AuditProducer
impl Clone for AuditProducer
Source§fn clone(&self) -> AuditProducer
fn clone(&self) -> AuditProducer
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 AuditProducer
impl Debug for AuditProducer
Source§impl<'de> Deserialize<'de> for AuditProducer
impl<'de> Deserialize<'de> for AuditProducer
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 Display for AuditProducer
impl Display for AuditProducer
Source§impl FromPlain for AuditProducer
impl FromPlain for AuditProducer
Source§type Err = ParseEnumError
type Err = ParseEnumError
The error type returned when parsing fails.
Source§fn from_plain(v: &str) -> Result<AuditProducer, ParseEnumError>
fn from_plain(v: &str) -> Result<AuditProducer, ParseEnumError>
Parse a value from its Conjure PLAIN string representation.
Source§impl FromStr for AuditProducer
impl FromStr for AuditProducer
Source§type Err = ParseEnumError
type Err = ParseEnumError
The associated error which can be returned from parsing.
Source§fn from_str(v: &str) -> Result<AuditProducer, ParseEnumError>
fn from_str(v: &str) -> Result<AuditProducer, ParseEnumError>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AuditProducer
impl Hash for AuditProducer
Source§impl Ord for AuditProducer
impl Ord for AuditProducer
Source§fn cmp(&self, other: &AuditProducer) -> Ordering
fn cmp(&self, other: &AuditProducer) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AuditProducer
impl PartialEq for AuditProducer
Source§impl PartialOrd for AuditProducer
impl PartialOrd for AuditProducer
Source§impl Plain for AuditProducer
impl Plain for AuditProducer
Source§impl Serialize for AuditProducer
impl Serialize for AuditProducer
impl Eq for AuditProducer
impl StructuralPartialEq for AuditProducer
Auto Trait Implementations§
impl Freeze for AuditProducer
impl RefUnwindSafe for AuditProducer
impl Send for AuditProducer
impl Sync for AuditProducer
impl Unpin for AuditProducer
impl UnwindSafe for AuditProducer
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