pub enum KafkaSecurityProtocolType {
Plaintext,
Ssl,
SaslSsl,
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for KafkaSecurityProtocolType
impl Clone for KafkaSecurityProtocolType
Source§fn clone(&self) -> KafkaSecurityProtocolType
fn clone(&self) -> KafkaSecurityProtocolType
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 KafkaSecurityProtocolType
impl Debug for KafkaSecurityProtocolType
Source§impl Default for KafkaSecurityProtocolType
impl Default for KafkaSecurityProtocolType
Source§fn default() -> KafkaSecurityProtocolType
fn default() -> KafkaSecurityProtocolType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KafkaSecurityProtocolType
impl<'de> Deserialize<'de> for KafkaSecurityProtocolType
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 KafkaSecurityProtocolType
impl Display for KafkaSecurityProtocolType
Source§impl Hash for KafkaSecurityProtocolType
impl Hash for KafkaSecurityProtocolType
Source§impl Ord for KafkaSecurityProtocolType
impl Ord for KafkaSecurityProtocolType
Source§fn cmp(&self, other: &KafkaSecurityProtocolType) -> Ordering
fn cmp(&self, other: &KafkaSecurityProtocolType) -> 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 PartialOrd for KafkaSecurityProtocolType
impl PartialOrd for KafkaSecurityProtocolType
impl Copy for KafkaSecurityProtocolType
impl Eq for KafkaSecurityProtocolType
impl StructuralPartialEq for KafkaSecurityProtocolType
Auto Trait Implementations§
impl Freeze for KafkaSecurityProtocolType
impl RefUnwindSafe for KafkaSecurityProtocolType
impl Send for KafkaSecurityProtocolType
impl Sync for KafkaSecurityProtocolType
impl Unpin for KafkaSecurityProtocolType
impl UnwindSafe for KafkaSecurityProtocolType
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