pub struct CrdtInspector { /* private fields */ }Expand description
CRDT Inspector for detailed CRDT analysis
Implementations§
Source§impl CrdtInspector
impl CrdtInspector
Sourcepub async fn inspect_crdt<T: CRDT + Mergeable>(
&self,
crdt: &T,
crdt_id: String,
) -> CrdtInspection
pub async fn inspect_crdt<T: CRDT + Mergeable>( &self, crdt: &T, crdt_id: String, ) -> CrdtInspection
Inspect a CRDT and return detailed information
Sourcepub async fn get_all_inspections(&self) -> HashMap<String, CrdtInspection>
pub async fn get_all_inspections(&self) -> HashMap<String, CrdtInspection>
Get all CRDT inspections
Auto Trait Implementations§
impl Freeze for CrdtInspector
impl !RefUnwindSafe for CrdtInspector
impl Send for CrdtInspector
impl Sync for CrdtInspector
impl Unpin for CrdtInspector
impl !UnwindSafe for CrdtInspector
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