pub struct FindCoordinatorResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub error_message: Option<String>,
pub node_id: i32,
pub host: String,
pub port: i32,
pub coordinators: Vec<Coordinator>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§throttle_time_ms: i32
The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
error_code: i16
The error code, or 0 if there was no error.
error_message: Option<String>
The error message, or null if there was no error.
node_id: i32
The node id.
host: String
The host name.
port: i32
The port.
coordinators: Vec<Coordinator>
Each coordinator result in the response
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for FindCoordinatorResponse
impl Clone for FindCoordinatorResponse
Source§fn clone(&self) -> FindCoordinatorResponse
fn clone(&self) -> FindCoordinatorResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 FindCoordinatorResponse
impl Debug for FindCoordinatorResponse
Source§impl Default for FindCoordinatorResponse
impl Default for FindCoordinatorResponse
Source§fn default() -> FindCoordinatorResponse
fn default() -> FindCoordinatorResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FindCoordinatorResponse
impl RefUnwindSafe for FindCoordinatorResponse
impl Send for FindCoordinatorResponse
impl Sync for FindCoordinatorResponse
impl Unpin for FindCoordinatorResponse
impl UnwindSafe for FindCoordinatorResponse
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