pub enum ProjectionRow {
Head {
sequence: u64,
entry: ContentId,
},
Entry(JournalEntry),
Object(ContentId),
}Expand description
Detached row in a read-only projection.
Variants§
Trait Implementations§
Source§impl Clone for ProjectionRow
impl Clone for ProjectionRow
Source§fn clone(&self) -> ProjectionRow
fn clone(&self) -> ProjectionRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectionRow
impl Debug for ProjectionRow
impl Eq for ProjectionRow
Source§impl PartialEq for ProjectionRow
impl PartialEq for ProjectionRow
impl StructuralPartialEq for ProjectionRow
Auto Trait Implementations§
impl Freeze for ProjectionRow
impl RefUnwindSafe for ProjectionRow
impl Send for ProjectionRow
impl Sync for ProjectionRow
impl Unpin for ProjectionRow
impl UnsafeUnpin for ProjectionRow
impl UnwindSafe for ProjectionRow
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