pub struct LockOutcome {
pub written: usize,
pub skipped: Vec<(String, String)>,
}Expand description
lock 실행 결과.
Fields§
§written: usize박제된 항목 수.
skipped: Vec<(String, String)>해석하지 못해 건너뛴 참조와 사유.
Auto Trait Implementations§
impl Freeze for LockOutcome
impl RefUnwindSafe for LockOutcome
impl Send for LockOutcome
impl Sync for LockOutcome
impl Unpin for LockOutcome
impl UnsafeUnpin for LockOutcome
impl UnwindSafe for LockOutcome
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