pub struct BatchRekeyResult {
pub dry_run: bool,
pub requested_node_ids: usize,
pub resolved_node_ids: usize,
pub missing_node_ids: Vec<String>,
pub scopes: Vec<ScopeRekeyResult>,
pub temporal_nodes_updated: usize,
pub calibrations_updated: usize,
}Fields§
§dry_run: bool§requested_node_ids: usize§resolved_node_ids: usize§missing_node_ids: Vec<String>§scopes: Vec<ScopeRekeyResult>§temporal_nodes_updated: usize§calibrations_updated: usizeTrait Implementations§
Source§impl Clone for BatchRekeyResult
impl Clone for BatchRekeyResult
Source§fn clone(&self) -> BatchRekeyResult
fn clone(&self) -> BatchRekeyResult
Returns a duplicate of the value. Read more
1.0.0 · 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 BatchRekeyResult
impl Debug for BatchRekeyResult
Source§impl Default for BatchRekeyResult
impl Default for BatchRekeyResult
Source§fn default() -> BatchRekeyResult
fn default() -> BatchRekeyResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchRekeyResult
impl RefUnwindSafe for BatchRekeyResult
impl Send for BatchRekeyResult
impl Sync for BatchRekeyResult
impl Unpin for BatchRekeyResult
impl UnsafeUnpin for BatchRekeyResult
impl UnwindSafe for BatchRekeyResult
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