pub enum SessionRecord {
Update {
collection_id: NonZero<i32>,
row: Option<NonZero<u32>>,
activity: Activity,
term_begin: Term,
term_end: Term,
fields: HashMap<Arc<String>, Vec<u8>>,
depends: Depends,
pends: Vec<Pend>,
},
Delete {
collection_id: NonZero<i32>,
row: NonZero<u32>,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SessionRecord
impl RefUnwindSafe for SessionRecord
impl Send for SessionRecord
impl Sync for SessionRecord
impl Unpin for SessionRecord
impl UnwindSafe for SessionRecord
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