Struct radicle_cob::object::collaboration::info::ChangeGraphInfo
source · pub struct ChangeGraphInfo {
pub object_id: ObjectId,
pub number_of_nodes: usize,
pub tips: BTreeSet<Oid>,
}
Expand description
Additional information about the change graph of an object
Fields§
§object_id: ObjectId
The ID of the object
number_of_nodes: usize
The number of nodes in the change graph of the object
tips: BTreeSet<Oid>
The “tips” of the change graph, i.e the object IDs pointed to by references to the object
Auto Trait Implementations§
impl Freeze for ChangeGraphInfo
impl RefUnwindSafe for ChangeGraphInfo
impl Send for ChangeGraphInfo
impl Sync for ChangeGraphInfo
impl Unpin for ChangeGraphInfo
impl UnwindSafe for ChangeGraphInfo
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