pub struct SnapshotBudgets {
pub max_nodes: usize,
pub max_edges: usize,
}Expand description
Limits applied when exporting a graph snapshot.
Fields§
§max_nodes: usizeMaximum memo nodes exported into the snapshot.
max_edges: usizeMaximum dependency edges exported into the snapshot.
Implementations§
Trait Implementations§
Source§impl Clone for SnapshotBudgets
impl Clone for SnapshotBudgets
Source§fn clone(&self) -> SnapshotBudgets
fn clone(&self) -> SnapshotBudgets
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 moreimpl Copy for SnapshotBudgets
Source§impl Debug for SnapshotBudgets
impl Debug for SnapshotBudgets
Source§impl Default for SnapshotBudgets
impl Default for SnapshotBudgets
impl Eq for SnapshotBudgets
Source§impl PartialEq for SnapshotBudgets
impl PartialEq for SnapshotBudgets
impl StructuralPartialEq for SnapshotBudgets
Auto Trait Implementations§
impl Freeze for SnapshotBudgets
impl RefUnwindSafe for SnapshotBudgets
impl Send for SnapshotBudgets
impl Sync for SnapshotBudgets
impl Unpin for SnapshotBudgets
impl UnsafeUnpin for SnapshotBudgets
impl UnwindSafe for SnapshotBudgets
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