pub struct TaskIds {
pub subtopology_id: KafkaString,
pub partitions: Vec<i32>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§subtopology_id: KafkaStringThe subtopology identifier.
partitions: Vec<i32>The partitions of the input topics processed by this member.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl TaskIds
impl TaskIds
pub fn with_subtopology_id(self, value: KafkaString) -> Self
pub fn with_partitions(self, value: Vec<i32>) -> 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§
impl StructuralPartialEq for TaskIds
Auto Trait Implementations§
impl !Freeze for TaskIds
impl RefUnwindSafe for TaskIds
impl Send for TaskIds
impl Sync for TaskIds
impl Unpin for TaskIds
impl UnsafeUnpin for TaskIds
impl UnwindSafe for TaskIds
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