pub struct MeshVector<V> {
pub section: Option<String>,
pub values: Vec<V>,
}Expand description
Minimal vector object created by a MeshDM section.
Fields§
§section: Option<String>Optional section name for solver diagnostics.
values: Vec<V>Contiguous values in local or global numbering order.
Trait Implementations§
Source§impl<V: Clone> Clone for MeshVector<V>
impl<V: Clone> Clone for MeshVector<V>
Source§fn clone(&self) -> MeshVector<V>
fn clone(&self) -> MeshVector<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 moreSource§impl<V: Debug> Debug for MeshVector<V>
impl<V: Debug> Debug for MeshVector<V>
Source§impl<V: PartialEq> PartialEq for MeshVector<V>
impl<V: PartialEq> PartialEq for MeshVector<V>
impl<V: PartialEq> StructuralPartialEq for MeshVector<V>
Auto Trait Implementations§
impl<V> Freeze for MeshVector<V>
impl<V> RefUnwindSafe for MeshVector<V>where
V: RefUnwindSafe,
impl<V> Send for MeshVector<V>where
V: Send,
impl<V> Sync for MeshVector<V>where
V: Sync,
impl<V> Unpin for MeshVector<V>where
V: Unpin,
impl<V> UnsafeUnpin for MeshVector<V>
impl<V> UnwindSafe for MeshVector<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