pub enum IntegrityPhysicalContainer {
Rows,
IndexEntries,
ReverseRelations,
JournalTails,
}Expand description
Physical container whose traversal could not prove progress or exhaustion.
Variants§
Rows
Canonical row storage.
IndexEntries
Active forward-index storage.
ReverseRelations
Active reverse-relation storage.
JournalTails
Journal-tail storage.
Trait Implementations§
Source§impl Clone for IntegrityPhysicalContainer
impl Clone for IntegrityPhysicalContainer
Source§fn clone(&self) -> IntegrityPhysicalContainer
fn clone(&self) -> IntegrityPhysicalContainer
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 moreimpl Copy for IntegrityPhysicalContainer
Source§impl Debug for IntegrityPhysicalContainer
impl Debug for IntegrityPhysicalContainer
Source§impl<'de> Deserialize<'de> for IntegrityPhysicalContainer
impl<'de> Deserialize<'de> for IntegrityPhysicalContainer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for IntegrityPhysicalContainer
impl StructuralPartialEq for IntegrityPhysicalContainer
Auto Trait Implementations§
impl Freeze for IntegrityPhysicalContainer
impl RefUnwindSafe for IntegrityPhysicalContainer
impl Send for IntegrityPhysicalContainer
impl Sync for IntegrityPhysicalContainer
impl Unpin for IntegrityPhysicalContainer
impl UnsafeUnpin for IntegrityPhysicalContainer
impl UnwindSafe for IntegrityPhysicalContainer
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