pub enum AlterConfigOpType {
Set,
Delete,
Append,
Subtract,
}Expand description
Operation type for an incremental config change.
Variants§
Set
Set or replace the config value.
Delete
Delete the config and fall back to Kafka defaults.
Append
Append to a list-valued config.
Subtract
Remove from a list-valued config.
Trait Implementations§
Source§impl Clone for AlterConfigOpType
impl Clone for AlterConfigOpType
Source§fn clone(&self) -> AlterConfigOpType
fn clone(&self) -> AlterConfigOpType
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 AlterConfigOpType
impl Debug for AlterConfigOpType
Source§impl PartialEq for AlterConfigOpType
impl PartialEq for AlterConfigOpType
impl Copy for AlterConfigOpType
impl Eq for AlterConfigOpType
impl StructuralPartialEq for AlterConfigOpType
Auto Trait Implementations§
impl Freeze for AlterConfigOpType
impl RefUnwindSafe for AlterConfigOpType
impl Send for AlterConfigOpType
impl Sync for AlterConfigOpType
impl Unpin for AlterConfigOpType
impl UnsafeUnpin for AlterConfigOpType
impl UnwindSafe for AlterConfigOpType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.