pub struct KfListGroupsResponse {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
pub groups: Vec<ListedGroup>,
}
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.
groups: Vec<ListedGroup>
Each group in the response.
Trait Implementations§
Source§impl Debug for KfListGroupsResponse
impl Debug for KfListGroupsResponse
Source§impl Decoder for KfListGroupsResponse
impl Decoder for KfListGroupsResponse
Source§impl Default for KfListGroupsResponse
impl Default for KfListGroupsResponse
Source§impl<'de> Deserialize<'de> for KfListGroupsResponse
impl<'de> Deserialize<'de> for KfListGroupsResponse
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 KfListGroupsResponse
impl Encoder for KfListGroupsResponse
Auto Trait Implementations§
impl Freeze for KfListGroupsResponse
impl RefUnwindSafe for KfListGroupsResponse
impl Send for KfListGroupsResponse
impl Sync for KfListGroupsResponse
impl Unpin for KfListGroupsResponse
impl UnwindSafe for KfListGroupsResponse
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