pub struct DeleteGroupsResponse;Expand description
Java DeleteGroupsResponse helpers.
Implementations§
Source§impl DeleteGroupsResponse
impl DeleteGroupsResponse
Sourcepub const fn should_client_throttle(version: i16) -> bool
pub const fn should_client_throttle(version: i16) -> bool
Java DeleteGroupsResponse.shouldClientThrottle.
Sourcepub fn error_counts(results: &[DeletableGroupResult]) -> HashMap<i16, i32>
pub fn error_counts(results: &[DeletableGroupResult]) -> HashMap<i16, i32>
Java DeleteGroupsResponse.errorCounts.
Counts per-group error codes (including NONE).
Sourcepub fn errors(results: &[DeletableGroupResult]) -> HashMap<String, i16>
pub fn errors(results: &[DeletableGroupResult]) -> HashMap<String, i16>
Java DeleteGroupsResponse.errors.
Map of group id to per-group errorCode (including NONE).
Sourcepub fn get(results: &[DeletableGroupResult], group: &str) -> Result<i16>
pub fn get(results: &[DeletableGroupResult], group: &str) -> Result<i16>
Java DeleteGroupsResponse.get.
Per-group errorCode for group. Missing id is
crate::Error::protocol (could not find group plus the id).
Auto Trait Implementations§
impl Freeze for DeleteGroupsResponse
impl RefUnwindSafe for DeleteGroupsResponse
impl Send for DeleteGroupsResponse
impl Sync for DeleteGroupsResponse
impl Unpin for DeleteGroupsResponse
impl UnsafeUnpin for DeleteGroupsResponse
impl UnwindSafe for DeleteGroupsResponse
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