pub struct DeleteStateData {
pub topic_id: Uuid,
pub partitions: Vec<PartitionData>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§topic_id: Uuid§partitions: Vec<PartitionData>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl DeleteStateData
impl DeleteStateData
pub fn to_owned(&self) -> DeleteStateData
Trait Implementations§
Source§impl Clone for DeleteStateData
impl Clone for DeleteStateData
Source§fn clone(&self) -> DeleteStateData
fn clone(&self) -> DeleteStateData
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 DeleteStateData
impl Debug for DeleteStateData
Source§impl<'de> DecodeBorrow<'de> for DeleteStateData
impl<'de> DecodeBorrow<'de> for DeleteStateData
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
Source§impl Default for DeleteStateData
impl Default for DeleteStateData
Source§fn default() -> DeleteStateData
fn default() -> DeleteStateData
Returns the “default value” for a type. Read more
Source§impl Encode for DeleteStateData
impl Encode for DeleteStateData
impl Eq for DeleteStateData
Source§impl PartialEq for DeleteStateData
impl PartialEq for DeleteStateData
Source§fn eq(&self, other: &DeleteStateData) -> bool
fn eq(&self, other: &DeleteStateData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteStateData
Auto Trait Implementations§
impl Freeze for DeleteStateData
impl RefUnwindSafe for DeleteStateData
impl Send for DeleteStateData
impl Sync for DeleteStateData
impl Unpin for DeleteStateData
impl UnsafeUnpin for DeleteStateData
impl UnwindSafe for DeleteStateData
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