[][src]Struct mshio::mshfile::NodeBlock

pub struct NodeBlock<U, I, F> where
    U: MshUsizeT,
    I: MshIntT,
    F: MshFloatT
{ pub entity_dim: I, pub entity_tag: I, pub parametric: bool, pub node_tags: Option<HashMap<U, usize>>, pub nodes: Vec<Node<F>>, pub parametric_nodes: Option<Vec<Node<F>>>, }

A block of nodes

Fields

entity_dim: I

The number of dimensions of nodes in this block

entity_tag: I

The tag of the geometric entity this block of elements is associated to

parametric: bool

Whether this node entity provides parametric coordinates for its nodes

This is currently unimplemented.

node_tags: Option<HashMap<U, usize>>

Maps the tag of each node to its linear index in this block

Node tags (used to reference nodes from entities) can be non-sequential (i.e. sparse). This map is only present if the node tags of this block are actually sparse. Otherwise it is None.

nodes: Vec<Node<F>>

The nodes of this block

parametric_nodes: Option<Vec<Node<F>>>

May contain parametric coordinates of the nodes

This is currently unimplemented.

Trait Implementations

impl<U: Clone, I: Clone, F: Clone> Clone for NodeBlock<U, I, F> where
    U: MshUsizeT,
    I: MshIntT,
    F: MshFloatT
[src]

impl<U: Debug, I: Debug, F: Debug> Debug for NodeBlock<U, I, F> where
    U: MshUsizeT,
    I: MshIntT,
    F: MshFloatT
[src]

impl<U: PartialEq, I: PartialEq, F: PartialEq> PartialEq<NodeBlock<U, I, F>> for NodeBlock<U, I, F> where
    U: MshUsizeT,
    I: MshIntT,
    F: MshFloatT
[src]

impl<U, I, F> StructuralPartialEq for NodeBlock<U, I, F> where
    U: MshUsizeT,
    I: MshIntT,
    F: MshFloatT
[src]

Auto Trait Implementations

impl<U, I, F> RefUnwindSafe for NodeBlock<U, I, F> where
    F: RefUnwindSafe,
    I: RefUnwindSafe,
    U: RefUnwindSafe

impl<U, I, F> Send for NodeBlock<U, I, F> where
    F: Send,
    I: Send,
    U: Send

impl<U, I, F> Sync for NodeBlock<U, I, F> where
    F: Sync,
    I: Sync,
    U: Sync

impl<U, I, F> Unpin for NodeBlock<U, I, F> where
    F: Unpin,
    I: Unpin,
    U: Unpin

impl<U, I, F> UnwindSafe for NodeBlock<U, I, F> where
    F: UnwindSafe,
    I: UnwindSafe,
    U: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.