pub struct DeletableTopicResult {
pub topic_id: Uuid,
pub error_code: i16,
pub error_message: Option<StrBytes>,
pub unknown_tagged_fields: BTreeMap<i32, Vec<u8>>,
}
Expand description
Valid versions: 0-6
Fields
topic_id: Uuid
the unique topic ID
Supported API versions: 6
error_code: i16
The deletion error, or 0 if the deletion succeeded.
Supported API versions: 0-6
error_message: Option<StrBytes>
The error message, or null if there was no error.
Supported API versions: 5-6
unknown_tagged_fields: BTreeMap<i32, Vec<u8>>
Other tagged fields
Trait Implementations
sourceimpl Clone for DeletableTopicResult
impl Clone for DeletableTopicResult
sourcefn clone(&self) -> DeletableTopicResult
fn clone(&self) -> DeletableTopicResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeletableTopicResult
impl Debug for DeletableTopicResult
sourceimpl Default for DeletableTopicResult
impl Default for DeletableTopicResult
sourceimpl Message for DeletableTopicResult
impl Message for DeletableTopicResult
sourceconst VERSIONS: VersionRange
const VERSIONS: VersionRange
The valid versions for this message.
sourceimpl PartialEq<DeletableTopicResult> for DeletableTopicResult
impl PartialEq<DeletableTopicResult> for DeletableTopicResult
sourcefn eq(&self, other: &DeletableTopicResult) -> bool
fn eq(&self, other: &DeletableTopicResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DeletableTopicResult) -> bool
fn ne(&self, other: &DeletableTopicResult) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeletableTopicResult
Auto Trait Implementations
impl RefUnwindSafe for DeletableTopicResult
impl Send for DeletableTopicResult
impl Sync for DeletableTopicResult
impl Unpin for DeletableTopicResult
impl UnwindSafe for DeletableTopicResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more