pub struct ElementClosureData<V> {
pub cell: PointId,
pub values: Vec<V>,
pub global_indices: Option<Vec<u64>>,
pub points: Vec<ElementClosurePoint>,
}Expand description
Orientation-aware FE closure data for element kernels.
Fields§
§cell: PointIdCell whose closure was extracted.
values: Vec<V>Flattened closure values after applying point orientation symmetries.
global_indices: Option<Vec<u64>>Local point/slot to global-index map for each closure scalar DOF, when provided.
Constrained/eliminated DOFs that have no owned global slot are recorded
as u64::MAX; constraint-aware insertion helpers distribute those
entries through their parent equations instead of using the sentinel.
points: Vec<ElementClosurePoint>Closure point and local-DOF order corresponding to values.
Trait Implementations§
Source§impl<V: Clone> Clone for ElementClosureData<V>
impl<V: Clone> Clone for ElementClosureData<V>
Source§fn clone(&self) -> ElementClosureData<V>
fn clone(&self) -> ElementClosureData<V>
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 moreAuto Trait Implementations§
impl<V> Freeze for ElementClosureData<V>
impl<V> RefUnwindSafe for ElementClosureData<V>where
V: RefUnwindSafe,
impl<V> Send for ElementClosureData<V>where
V: Send,
impl<V> Sync for ElementClosureData<V>where
V: Sync,
impl<V> Unpin for ElementClosureData<V>where
V: Unpin,
impl<V> UnsafeUnpin for ElementClosureData<V>
impl<V> UnwindSafe for ElementClosureData<V>where
V: 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