pub struct ConsistencyCheck {
pub can_resume: bool,
pub issues: Vec<String>,
}Expand description
Consistency check result for session resume.
Fields§
§can_resume: boolWhether the session can be safely resumed.
issues: Vec<String>List of issues found during the consistency check.
Trait Implementations§
Source§impl Clone for ConsistencyCheck
impl Clone for ConsistencyCheck
Source§fn clone(&self) -> ConsistencyCheck
fn clone(&self) -> ConsistencyCheck
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 moreAuto Trait Implementations§
impl Freeze for ConsistencyCheck
impl RefUnwindSafe for ConsistencyCheck
impl Send for ConsistencyCheck
impl Sync for ConsistencyCheck
impl Unpin for ConsistencyCheck
impl UnsafeUnpin for ConsistencyCheck
impl UnwindSafe for ConsistencyCheck
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