pub enum SemanticPayload<'record> {
Carried(&'record [u8]),
Spooled(ObjectHash),
Absent,
}Expand description
Where one record’s plaintext is: in the row, in the spool, or nowhere, because the image domains name their payload by reference and have no semantic body of their own.
Variants§
Trait Implementations§
Source§impl<'record> Clone for SemanticPayload<'record>
impl<'record> Clone for SemanticPayload<'record>
Source§fn clone(&self) -> SemanticPayload<'record>
fn clone(&self) -> SemanticPayload<'record>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'record> Debug for SemanticPayload<'record>
impl<'record> Debug for SemanticPayload<'record>
Source§impl<'record> PartialEq for SemanticPayload<'record>
impl<'record> PartialEq for SemanticPayload<'record>
impl<'record> Copy for SemanticPayload<'record>
impl<'record> Eq for SemanticPayload<'record>
impl<'record> StructuralPartialEq for SemanticPayload<'record>
Auto Trait Implementations§
impl<'record> Freeze for SemanticPayload<'record>
impl<'record> RefUnwindSafe for SemanticPayload<'record>
impl<'record> Send for SemanticPayload<'record>
impl<'record> Sync for SemanticPayload<'record>
impl<'record> Unpin for SemanticPayload<'record>
impl<'record> UnsafeUnpin for SemanticPayload<'record>
impl<'record> UnwindSafe for SemanticPayload<'record>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.