pub struct ChildEdge {
pub parent_spool_id: String,
pub child_spool_id: String,
pub mount_name: String,
pub anchored_state_id: Option<StateId>,
pub child_head: Option<StateId>,
pub status: i32,
}Expand description
One resolved child edge. Mirrors weft children::ChildEdge.
Fields§
§parent_spool_id: String§child_spool_id: String§mount_name: String§anchored_state_id: Option<StateId>The child content state-id this edge is currently anchored to (16-byte ChangeId).
child_head: Option<StateId>The child’s latest content-facet head, if any (absent = child has no content head yet).
status: i32Moving-anchored-ff status of the anchor vs the child head.
Implementations§
Source§impl ChildEdge
impl ChildEdge
Sourcepub fn status(&self) -> ChildEdgeStatus
pub fn status(&self) -> ChildEdgeStatus
Returns the enum value of status, or the default if the field is set to an invalid enum value.
Sourcepub fn set_status(&mut self, value: ChildEdgeStatus)
pub fn set_status(&mut self, value: ChildEdgeStatus)
Sets status to the provided enum value.
Trait Implementations§
impl Eq for ChildEdge
Source§impl Message for ChildEdge
impl Message for ChildEdge
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.impl StructuralPartialEq for ChildEdge
Auto Trait Implementations§
impl Freeze for ChildEdge
impl RefUnwindSafe for ChildEdge
impl Send for ChildEdge
impl Sync for ChildEdge
impl Unpin for ChildEdge
impl UnsafeUnpin for ChildEdge
impl UnwindSafe for ChildEdge
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