pub struct AlterConfigsResult { /* private fields */ }Expand description
Complete response from one classic or incremental AlterConfigs operation.
Implementations§
Source§impl AlterConfigsResult
impl AlterConfigsResult
Sourcepub fn throttle_time(&self) -> Duration
pub fn throttle_time(&self) -> Duration
Returns the broker throttle time.
Sourcepub fn resources(&self) -> &[AlterConfigResourceResult]
pub fn resources(&self) -> &[AlterConfigResourceResult]
Returns resource outcomes in broker response order.
Sourcepub fn into_resources(self) -> Vec<AlterConfigResourceResult>
pub fn into_resources(self) -> Vec<AlterConfigResourceResult>
Consumes this response and returns resource outcomes.
Sourcepub fn has_errors(&self) -> bool
pub fn has_errors(&self) -> bool
Returns whether at least one resource update was rejected.
Trait Implementations§
Source§impl Clone for AlterConfigsResult
impl Clone for AlterConfigsResult
Source§fn clone(&self) -> AlterConfigsResult
fn clone(&self) -> AlterConfigsResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlterConfigsResult
impl Debug for AlterConfigsResult
impl Eq for AlterConfigsResult
Source§impl PartialEq for AlterConfigsResult
impl PartialEq for AlterConfigsResult
impl StructuralPartialEq for AlterConfigsResult
Auto Trait Implementations§
impl Freeze for AlterConfigsResult
impl RefUnwindSafe for AlterConfigsResult
impl Send for AlterConfigsResult
impl Sync for AlterConfigsResult
impl Unpin for AlterConfigsResult
impl UnsafeUnpin for AlterConfigsResult
impl UnwindSafe for AlterConfigsResult
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