pub struct Windings {
pub w: Vec<[i32; 2]>,
pub known: Vec<bool>,
}Expand description
Per-cell winding numbers, one entry per operand.
Fields§
§w: Vec<[i32; 2]>w[cell] = [w_P, w_Q], valid only where known[cell].
known: Vec<bool>Implementations§
Auto Trait Implementations§
impl Freeze for Windings
impl RefUnwindSafe for Windings
impl Send for Windings
impl Sync for Windings
impl Unpin for Windings
impl UnsafeUnpin for Windings
impl UnwindSafe for Windings
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