[][src]Struct mshio::mshfile::Element

pub struct Element<U> where
    U: Unsigned + Integer
{ pub element_tag: U, pub nodes: Vec<U>, }

Data of one mesh element

Fields

element_tag: U

Tag of this element

nodes: Vec<U>

The tags of nodes associated to this element

Trait Implementations

impl<U: Clone> Clone for Element<U> where
    U: Unsigned + Integer
[src]

impl<U: Debug> Debug for Element<U> where
    U: Unsigned + Integer
[src]

impl<U: PartialEq> PartialEq<Element<U>> for Element<U> where
    U: Unsigned + Integer
[src]

impl<U> StructuralPartialEq for Element<U> where
    U: Unsigned + Integer
[src]

Auto Trait Implementations

impl<U> RefUnwindSafe for Element<U> where
    U: RefUnwindSafe

impl<U> Send for Element<U> where
    U: Send

impl<U> Sync for Element<U> where
    U: Sync

impl<U> Unpin for Element<U> where
    U: Unpin

impl<U> UnwindSafe for Element<U> where
    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.