pub enum Balancing {
Strong(usize),
Weak(usize),
None,
}Expand description
Constraint on the level difference between neighboring nodes.
Variants§
Strong(usize)
Level difference of at most n between nodes sharing a face, an edge
or a vertex.
Weak(usize)
Level difference of at most n between nodes sharing a face only.
None
No constraint on the level difference.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Balancing
impl RefUnwindSafe for Balancing
impl Send for Balancing
impl Sync for Balancing
impl Unpin for Balancing
impl UnsafeUnpin for Balancing
impl UnwindSafe for Balancing
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