pub struct CompatibilityReport {
pub sync_accessible: bool,
pub async_accessible: bool,
pub sync_node_count: u64,
pub async_node_count: u64,
pub sync_edge_count: u64,
pub async_edge_count: u64,
pub compatible: bool,
}Expand description
Report on database compatibility between sync and async APIs
Fields§
§sync_accessible: boolWhether the sync API can access the database
async_accessible: boolWhether the async API can access the database
sync_node_count: u64Node count from sync API
async_node_count: u64Node count from async API
sync_edge_count: u64Edge count from sync API
async_edge_count: u64Edge count from async API
compatible: boolWhether the APIs are compatible (counts match)
Trait Implementations§
Source§impl Clone for CompatibilityReport
impl Clone for CompatibilityReport
Source§fn clone(&self) -> CompatibilityReport
fn clone(&self) -> CompatibilityReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompatibilityReport
impl RefUnwindSafe for CompatibilityReport
impl Send for CompatibilityReport
impl Sync for CompatibilityReport
impl Unpin for CompatibilityReport
impl UnwindSafe for CompatibilityReport
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