[][src]Struct mshio::mshfile::Elements

pub struct Elements<U, I> where
    U: MshUsizeT,
    I: MshIntT
{ pub num_elements: U, pub min_element_tag: U, pub max_element_tag: U, pub element_blocks: Vec<ElementBlock<U, I>>, }

All element data of a mesh

Fields

num_elements: U

Total number of elements across all element blocks

min_element_tag: U

The smallest element tag assigned to an element

max_element_tag: U

The largest element tag assigned to an element

element_blocks: Vec<ElementBlock<U, I>>

Blocks of elements with shared properties

Trait Implementations

impl<U: Clone, I: Clone> Clone for Elements<U, I> where
    U: MshUsizeT,
    I: MshIntT
[src]

impl<U: Debug, I: Debug> Debug for Elements<U, I> where
    U: MshUsizeT,
    I: MshIntT
[src]

impl<U: PartialEq, I: PartialEq> PartialEq<Elements<U, I>> for Elements<U, I> where
    U: MshUsizeT,
    I: MshIntT
[src]

impl<U, I> StructuralPartialEq for Elements<U, I> where
    U: MshUsizeT,
    I: MshIntT
[src]

Auto Trait Implementations

impl<U, I> RefUnwindSafe for Elements<U, I> where
    I: RefUnwindSafe,
    U: RefUnwindSafe

impl<U, I> Send for Elements<U, I> where
    I: Send,
    U: Send

impl<U, I> Sync for Elements<U, I> where
    I: Sync,
    U: Sync

impl<U, I> Unpin for Elements<U, I> where
    I: Unpin,
    U: Unpin

impl<U, I> UnwindSafe for Elements<U, I> where
    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.