pub struct List<Field>(/* private fields */);Expand description
A list of independent copies of one field, e.g. every Gauss point’s plastic
state across a mesh; an increment reconstructs entry-wise. Composes with
Product for a multi-block mesh (Product<List<Field1>, List<Field2>>).
Trait Implementations§
Source§impl<Field> Integrable for List<Field>where
Field: Integrable,
TensorVector<Field::Point>: Tensor<Item = Field::Point>,
TensorVector<Field::Increment>: Tensor<Item = Field::Increment>,
impl<Field> Integrable for List<Field>where
Field: Integrable,
TensorVector<Field::Point>: Tensor<Item = Field::Point>,
TensorVector<Field::Increment>: Tensor<Item = Field::Increment>,
Source§type Point = TensorVector<<Field as Integrable>::Point>
type Point = TensorVector<<Field as Integrable>::Point>
The state value this field carries.
Source§type Increment = TensorVector<<Field as Integrable>::Increment>
type Increment = TensorVector<<Field as Integrable>::Increment>
The tangent/algebra element that advances a
Self::Point.Source§fn reconstruct(
base: &Self::Point,
increment: &Self::Increment,
) -> Result<Self::Point, TensorError>
fn reconstruct( base: &Self::Point, increment: &Self::Increment, ) -> Result<Self::Point, TensorError>
Advances
base by increment.Auto Trait Implementations§
impl<Field> Freeze for List<Field>
impl<Field> RefUnwindSafe for List<Field>where
Field: RefUnwindSafe,
impl<Field> Send for List<Field>where
Field: Send,
impl<Field> Sync for List<Field>where
Field: Sync,
impl<Field> Unpin for List<Field>where
Field: Unpin,
impl<Field> UnsafeUnpin for List<Field>
impl<Field> UnwindSafe for List<Field>where
Field: UnwindSafe,
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