pub struct OperationList {
pub operations: Vec<OperationInfo>,
pub incomplete: bool,
}Expand description
The answer to Client::list_operations.
Fields§
§operations: Vec<OperationInfo>The operations the filter matched.
incomplete: boolWhether the cluster had more to say than the limit allowed.
The cluster’s own incomplete, and not an error: the way to page
through a long list is to move the filter’s time window, so a caller
that ignores this silently sees only the first page.
Trait Implementations§
Source§impl Clone for OperationList
impl Clone for OperationList
Source§fn clone(&self) -> OperationList
fn clone(&self) -> OperationList
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 OperationList
impl Debug for OperationList
impl Eq for OperationList
Source§impl PartialEq for OperationList
impl PartialEq for OperationList
impl StructuralPartialEq for OperationList
Auto Trait Implementations§
impl Freeze for OperationList
impl RefUnwindSafe for OperationList
impl Send for OperationList
impl Sync for OperationList
impl Unpin for OperationList
impl UnsafeUnpin for OperationList
impl UnwindSafe for OperationList
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