pub struct ScopeRekeyResult {
pub source_tenant_id: String,
pub source_session_id: String,
pub target_tenant_id: String,
pub target_session_id: String,
pub temporal_nodes: usize,
pub calibrations: usize,
pub target_temporal_nodes: usize,
pub target_calibrations: usize,
pub applied: bool,
pub conflict: bool,
pub message: Option<String>,
}Fields§
§source_tenant_id: String§source_session_id: String§target_tenant_id: String§target_session_id: String§temporal_nodes: usize§calibrations: usize§target_temporal_nodes: usize§target_calibrations: usize§applied: bool§conflict: bool§message: Option<String>Trait Implementations§
Source§impl Clone for ScopeRekeyResult
impl Clone for ScopeRekeyResult
Source§fn clone(&self) -> ScopeRekeyResult
fn clone(&self) -> ScopeRekeyResult
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 ScopeRekeyResult
impl Debug for ScopeRekeyResult
Source§impl Default for ScopeRekeyResult
impl Default for ScopeRekeyResult
Source§fn default() -> ScopeRekeyResult
fn default() -> ScopeRekeyResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScopeRekeyResult
impl RefUnwindSafe for ScopeRekeyResult
impl Send for ScopeRekeyResult
impl Sync for ScopeRekeyResult
impl Unpin for ScopeRekeyResult
impl UnsafeUnpin for ScopeRekeyResult
impl UnwindSafe for ScopeRekeyResult
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