pub enum AclPatternType {
Unknown,
Any,
Literal,
Prefixed,
Match,
Other(i8),
}Expand description
Kafka ACL resource pattern type.
Variants§
Unknown
Unknown pattern type.
Any
Match any pattern type in a filter.
Literal
Match literal resource names.
Prefixed
Match resource-name prefixes.
Match
Match literal or prefixed patterns in a filter.
Other(i8)
Pattern type code introduced by a newer broker.
Trait Implementations§
Source§impl Clone for AclPatternType
impl Clone for AclPatternType
Source§fn clone(&self) -> AclPatternType
fn clone(&self) -> AclPatternType
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 AclPatternType
Source§impl Debug for AclPatternType
impl Debug for AclPatternType
impl Eq for AclPatternType
Source§impl PartialEq for AclPatternType
impl PartialEq for AclPatternType
impl StructuralPartialEq for AclPatternType
Auto Trait Implementations§
impl Freeze for AclPatternType
impl RefUnwindSafe for AclPatternType
impl Send for AclPatternType
impl Sync for AclPatternType
impl Unpin for AclPatternType
impl UnsafeUnpin for AclPatternType
impl UnwindSafe for AclPatternType
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