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