pub struct ClosurePointIndex<O> {
pub point: PointId,
pub orientation: O,
pub offset: usize,
pub len: usize,
pub permutation: Vec<usize>,
}Expand description
One point-sized span inside a flattened closure vector.
Fields§
§point: PointIdTopology point contributing these DOFs.
orientation: OAccumulated orientation from the closure seed to point.
offset: usizeOffset in the flattened closure vector.
len: usizeNumber of DOFs contributed by this point.
permutation: Vec<usize>Maps closure-local DOF slots to section-local indices for this point.
Trait Implementations§
Source§impl<O: Clone> Clone for ClosurePointIndex<O>
impl<O: Clone> Clone for ClosurePointIndex<O>
Source§fn clone(&self) -> ClosurePointIndex<O>
fn clone(&self) -> ClosurePointIndex<O>
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 moreSource§impl<O: Debug> Debug for ClosurePointIndex<O>
impl<O: Debug> Debug for ClosurePointIndex<O>
impl<O: Eq> Eq for ClosurePointIndex<O>
Source§impl<O: PartialEq> PartialEq for ClosurePointIndex<O>
impl<O: PartialEq> PartialEq for ClosurePointIndex<O>
impl<O: PartialEq> StructuralPartialEq for ClosurePointIndex<O>
Auto Trait Implementations§
impl<O> Freeze for ClosurePointIndex<O>where
O: Freeze,
impl<O> RefUnwindSafe for ClosurePointIndex<O>where
O: RefUnwindSafe,
impl<O> Send for ClosurePointIndex<O>where
O: Send,
impl<O> Sync for ClosurePointIndex<O>where
O: Sync,
impl<O> Unpin for ClosurePointIndex<O>where
O: Unpin,
impl<O> UnsafeUnpin for ClosurePointIndex<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for ClosurePointIndex<O>where
O: UnwindSafe,
Blanket Implementations§
Source§impl<T> AccumulatePathExt for T
impl<T> AccumulatePathExt for T
fn accumulate_path<O, I>(path: I) -> Owhere
O: Orientation,
I: IntoIterator<Item = O>,
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