pub struct KfFindCoordinatorResponse {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
pub error_message: Option<String>,
pub node_id: i32,
pub host: String,
pub port: i32,
}
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: ErrorCode
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.
Trait Implementations§
Source§impl Debug for KfFindCoordinatorResponse
impl Debug for KfFindCoordinatorResponse
Source§impl Decoder for KfFindCoordinatorResponse
impl Decoder for KfFindCoordinatorResponse
Source§impl Default for KfFindCoordinatorResponse
impl Default for KfFindCoordinatorResponse
Source§impl<'de> Deserialize<'de> for KfFindCoordinatorResponse
impl<'de> Deserialize<'de> for KfFindCoordinatorResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encoder for KfFindCoordinatorResponse
impl Encoder for KfFindCoordinatorResponse
Auto Trait Implementations§
impl Freeze for KfFindCoordinatorResponse
impl RefUnwindSafe for KfFindCoordinatorResponse
impl Send for KfFindCoordinatorResponse
impl Sync for KfFindCoordinatorResponse
impl Unpin for KfFindCoordinatorResponse
impl UnwindSafe for KfFindCoordinatorResponse
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