pub struct KfHeartbeatResponse {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
}
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.
Trait Implementations§
Source§impl Debug for KfHeartbeatResponse
impl Debug for KfHeartbeatResponse
Source§impl Decoder for KfHeartbeatResponse
impl Decoder for KfHeartbeatResponse
Source§impl Default for KfHeartbeatResponse
impl Default for KfHeartbeatResponse
Source§impl<'de> Deserialize<'de> for KfHeartbeatResponse
impl<'de> Deserialize<'de> for KfHeartbeatResponse
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 KfHeartbeatResponse
impl Encoder for KfHeartbeatResponse
Auto Trait Implementations§
impl Freeze for KfHeartbeatResponse
impl RefUnwindSafe for KfHeartbeatResponse
impl Send for KfHeartbeatResponse
impl Sync for KfHeartbeatResponse
impl Unpin for KfHeartbeatResponse
impl UnwindSafe for KfHeartbeatResponse
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