pub struct FinalizedFeatureKey {
pub name: KafkaString,
pub max_version_level: i16,
pub min_version_level: i16,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§name: KafkaStringThe name of the feature.
max_version_level: i16The cluster-wide finalized max version level for the feature.
min_version_level: i16The cluster-wide finalized min version level for the feature.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl FinalizedFeatureKey
impl FinalizedFeatureKey
pub fn with_name(self, value: KafkaString) -> Self
pub fn with_max_version_level(self, value: i16) -> Self
pub fn with_min_version_level(self, value: i16) -> Self
pub fn read(buf: &mut Bytes, _version: i16) -> Result<Self>
pub fn write(&self, buf: &mut BytesMut, _version: i16) -> Result<()>
pub fn encoded_len(&self, _version: i16) -> Result<usize>
Trait Implementations§
Source§impl Clone for FinalizedFeatureKey
impl Clone for FinalizedFeatureKey
Source§fn clone(&self) -> FinalizedFeatureKey
fn clone(&self) -> FinalizedFeatureKey
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 moreSource§impl Debug for FinalizedFeatureKey
impl Debug for FinalizedFeatureKey
Source§impl Default for FinalizedFeatureKey
impl Default for FinalizedFeatureKey
Source§impl PartialEq for FinalizedFeatureKey
impl PartialEq for FinalizedFeatureKey
Source§fn eq(&self, other: &FinalizedFeatureKey) -> bool
fn eq(&self, other: &FinalizedFeatureKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FinalizedFeatureKey
Auto Trait Implementations§
impl !Freeze for FinalizedFeatureKey
impl RefUnwindSafe for FinalizedFeatureKey
impl Send for FinalizedFeatureKey
impl Sync for FinalizedFeatureKey
impl Unpin for FinalizedFeatureKey
impl UnsafeUnpin for FinalizedFeatureKey
impl UnwindSafe for FinalizedFeatureKey
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