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