pub struct LockReview {
pub current_version: Option<u64>,
pub incoming_version: u64,
pub version_ready: bool,
pub diff_entries: Vec<ReviewDiffEntry>,
}Fields§
§current_version: Option<u64>§incoming_version: u64§version_ready: bool§diff_entries: Vec<ReviewDiffEntry>Trait Implementations§
Source§impl Clone for LockReview
impl Clone for LockReview
Source§fn clone(&self) -> LockReview
fn clone(&self) -> LockReview
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 LockReview
impl Debug for LockReview
impl Eq for LockReview
Source§impl PartialEq for LockReview
impl PartialEq for LockReview
impl StructuralPartialEq for LockReview
Auto Trait Implementations§
impl Freeze for LockReview
impl RefUnwindSafe for LockReview
impl Send for LockReview
impl Sync for LockReview
impl Unpin for LockReview
impl UnsafeUnpin for LockReview
impl UnwindSafe for LockReview
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