#[non_exhaustive]pub struct DescribeLogDirsPartition {
pub partition_index: i32,
pub partition_size: i64,
pub offset_lag: i64,
pub is_future_key: bool,
pub unknown_tagged_fields: BTreeMap<i32, Bytes>,
}
Expand description
Valid versions: 0-4
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.partition_index: i32
The partition index.
Supported API versions: 0-4
partition_size: i64
The size of the log segments in this partition in bytes.
Supported API versions: 0-4
offset_lag: i64
The lag of the log’s LEO w.r.t. partition’s HW (if it is the current log for the partition) or current replica’s LEO (if it is the future log for the partition)
Supported API versions: 0-4
is_future_key: bool
True if this log is created by AlterReplicaLogDirsRequest and will replace the current log of the replica in the future.
Supported API versions: 0-4
unknown_tagged_fields: BTreeMap<i32, Bytes>
Other tagged fields
Implementations§
Source§impl DescribeLogDirsPartition
impl DescribeLogDirsPartition
Sourcepub fn with_partition_index(self, value: i32) -> Self
pub fn with_partition_index(self, value: i32) -> Self
Sets partition_index
to the passed value.
The partition index.
Supported API versions: 0-4
Sourcepub fn with_partition_size(self, value: i64) -> Self
pub fn with_partition_size(self, value: i64) -> Self
Sets partition_size
to the passed value.
The size of the log segments in this partition in bytes.
Supported API versions: 0-4
Sourcepub fn with_offset_lag(self, value: i64) -> Self
pub fn with_offset_lag(self, value: i64) -> Self
Sets offset_lag
to the passed value.
The lag of the log’s LEO w.r.t. partition’s HW (if it is the current log for the partition) or current replica’s LEO (if it is the future log for the partition)
Supported API versions: 0-4
Sourcepub fn with_is_future_key(self, value: bool) -> Self
pub fn with_is_future_key(self, value: bool) -> Self
Sets is_future_key
to the passed value.
True if this log is created by AlterReplicaLogDirsRequest and will replace the current log of the replica in the future.
Supported API versions: 0-4
Sourcepub fn with_unknown_tagged_fields(self, value: BTreeMap<i32, Bytes>) -> Self
pub fn with_unknown_tagged_fields(self, value: BTreeMap<i32, Bytes>) -> Self
Sets unknown_tagged_fields to the passed value.
Sourcepub fn with_unknown_tagged_field(self, key: i32, value: Bytes) -> Self
pub fn with_unknown_tagged_field(self, key: i32, value: Bytes) -> Self
Inserts an entry into unknown_tagged_fields.
Trait Implementations§
Source§impl Clone for DescribeLogDirsPartition
impl Clone for DescribeLogDirsPartition
Source§fn clone(&self) -> DescribeLogDirsPartition
fn clone(&self) -> DescribeLogDirsPartition
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DescribeLogDirsPartition
impl Debug for DescribeLogDirsPartition
Source§impl Decodable for DescribeLogDirsPartition
Available on crate feature client
only.
impl Decodable for DescribeLogDirsPartition
client
only.Source§impl Default for DescribeLogDirsPartition
impl Default for DescribeLogDirsPartition
Source§impl Encodable for DescribeLogDirsPartition
Available on crate feature broker
only.
impl Encodable for DescribeLogDirsPartition
broker
only.