pub enum StateAttachmentBody {
Context(ContentHash),
RiskSignals(ContentHash),
ReviewSignatures(ContentHash),
Discussions(ContentHash),
StructuredConflicts(ContentHash),
SemanticIndex(ContentHash),
Signature(StateSignature),
}Variants§
Context(ContentHash)
RiskSignals(ContentHash)
ReviewSignatures(ContentHash)
Discussions(ContentHash)
StructuredConflicts(ContentHash)
SemanticIndex(ContentHash)
Content hash of the state’s SemanticIndexRoot blob (heddle#1067).
Signature(StateSignature)
Trait Implementations§
Source§impl Clone for StateAttachmentBody
impl Clone for StateAttachmentBody
Source§fn clone(&self) -> StateAttachmentBody
fn clone(&self) -> StateAttachmentBody
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 StateAttachmentBody
impl Debug for StateAttachmentBody
Source§impl<'de> Deserialize<'de> for StateAttachmentBody
impl<'de> Deserialize<'de> for StateAttachmentBody
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
Source§impl PartialEq for StateAttachmentBody
impl PartialEq for StateAttachmentBody
Source§impl Serialize for StateAttachmentBody
impl Serialize for StateAttachmentBody
impl StructuralPartialEq for StateAttachmentBody
Auto Trait Implementations§
impl Freeze for StateAttachmentBody
impl RefUnwindSafe for StateAttachmentBody
impl Send for StateAttachmentBody
impl Sync for StateAttachmentBody
impl Unpin for StateAttachmentBody
impl UnsafeUnpin for StateAttachmentBody
impl UnwindSafe for StateAttachmentBody
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