Enum semilattice_database::Record
source · [−]pub enum Record {
New {
collection_id: i32,
activity: Activity,
term_begin: Term,
term_end: Term,
fields: Vec<KeyValue>,
depends: Depends,
pends: Vec<Pend>,
},
Update {
collection_id: i32,
row: u32,
activity: Activity,
term_begin: Term,
term_end: Term,
fields: Vec<KeyValue>,
depends: Depends,
pends: Vec<Pend>,
},
Delete {
collection_id: i32,
row: u32,
},
}Variants
New
Update
Delete
Auto Trait Implementations
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more