pub struct ContextRecord {Show 14 fields
pub ref: Option<RecordRef>,
pub version: Vec<u8>,
pub anchor: Option<CollaborationAnchor>,
pub content: String,
pub tags: Vec<AnnotationTag>,
pub principal_id: String,
pub agent_id: String,
pub supersedes: Option<RecordRef>,
pub extracted_from: Option<RecordRef>,
pub anchor_coverage: i32,
pub superseded: bool,
pub causal_id: Vec<u8>,
pub causal_parents: Vec<Vec<u8>>,
pub causal_heads: Vec<Vec<u8>>,
}Fields§
§ref: Option<RecordRef>§version: Vec<u8>§anchor: Option<CollaborationAnchor>§content: String§principal_id: String§agent_id: String§supersedes: Option<RecordRef>§extracted_from: Option<RecordRef>§anchor_coverage: i32§superseded: bool§causal_id: Vec<u8>Context revisions form a causal register. Concurrent current revisions share ref and version; retain each causal_id instead of choosing a winner. expected_version uses the aggregate current-frontier version, including when include_history also returns an earlier revision.
causal_parents: Vec<Vec<u8>>§causal_heads: Vec<Vec<u8>>Implementations§
Source§impl ContextRecord
impl ContextRecord
Sourcepub fn anchor_coverage(&self) -> Coverage
pub fn anchor_coverage(&self) -> Coverage
Returns the enum value of anchor_coverage, or the default if the field is set to an invalid enum value.
Sourcepub fn set_anchor_coverage(&mut self, value: Coverage)
pub fn set_anchor_coverage(&mut self, value: Coverage)
Sets anchor_coverage to the provided enum value.
Trait Implementations§
Source§impl Clone for ContextRecord
impl Clone for ContextRecord
Source§fn clone(&self) -> ContextRecord
fn clone(&self) -> ContextRecord
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 ContextRecord
impl Debug for ContextRecord
Source§impl Default for ContextRecord
impl Default for ContextRecord
Source§fn default() -> ContextRecord
fn default() -> ContextRecord
Returns the “default value” for a type. Read more
Source§impl Message for ContextRecord
impl Message for ContextRecord
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for ContextRecord
impl PartialEq for ContextRecord
impl StructuralPartialEq for ContextRecord
Auto Trait Implementations§
impl Freeze for ContextRecord
impl RefUnwindSafe for ContextRecord
impl Send for ContextRecord
impl Sync for ContextRecord
impl Unpin for ContextRecord
impl UnsafeUnpin for ContextRecord
impl UnwindSafe for ContextRecord
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more