pub enum SessionRecord {
Update {
collection_id: NonZeroI32,
row: Option<NonZeroU32>,
activity: Activity,
term_begin: Term,
term_end: Term,
fields: HashMap<FieldName, Vec<u8>>,
depends: Depends,
pends: Vec<Pend>,
},
Delete {
collection_id: NonZeroI32,
row: NonZeroU32,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
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