pub struct ControllerRegistrationResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub error_message: Option<String>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§throttle_time_ms: i32§error_code: i16§error_message: Option<String>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for ControllerRegistrationResponse
impl Clone for ControllerRegistrationResponse
Source§fn clone(&self) -> ControllerRegistrationResponse
fn clone(&self) -> ControllerRegistrationResponse
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 Decode<'_> for ControllerRegistrationResponse
impl Decode<'_> for ControllerRegistrationResponse
Source§impl Default for ControllerRegistrationResponse
impl Default for ControllerRegistrationResponse
Source§fn default() -> ControllerRegistrationResponse
fn default() -> ControllerRegistrationResponse
Returns the “default value” for a type. Read more
impl Eq for ControllerRegistrationResponse
Source§impl PartialEq for ControllerRegistrationResponse
impl PartialEq for ControllerRegistrationResponse
Source§fn eq(&self, other: &ControllerRegistrationResponse) -> bool
fn eq(&self, other: &ControllerRegistrationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControllerRegistrationResponse
Auto Trait Implementations§
impl Freeze for ControllerRegistrationResponse
impl RefUnwindSafe for ControllerRegistrationResponse
impl Send for ControllerRegistrationResponse
impl Sync for ControllerRegistrationResponse
impl Unpin for ControllerRegistrationResponse
impl UnsafeUnpin for ControllerRegistrationResponse
impl UnwindSafe for ControllerRegistrationResponse
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