pub struct Record<'a> {
pub ts: u64,
pub fop_type: &'a str,
pub fop: &'a str,
pub gfid: &'a str,
pub path: &'a str,
pub path1: &'a str,
pub path2: &'a str,
pub mode: i64,
pub uid: i64,
pub gid: i64,
pub fullpath: &'a str,
}
Fields§
§ts: u64
§fop_type: &'a str
§fop: &'a str
§gfid: &'a str
§path: &'a str
§path1: &'a str
§path2: &'a str
§mode: i64
§uid: i64
§gid: i64
§fullpath: &'a str
Auto Trait Implementations§
impl<'a> Freeze for Record<'a>
impl<'a> RefUnwindSafe for Record<'a>
impl<'a> Send for Record<'a>
impl<'a> Sync for Record<'a>
impl<'a> Unpin for Record<'a>
impl<'a> UnwindSafe for Record<'a>
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