pub struct E3T<U = u32>{
pub id: U,
pub nodes: [U; 3],
pub material: U,
}Expand description
Identifies a 3-noded triangular element.
Fields§
§id: UThe ID of the element.
nodes: [U; 3]The IDs of nodes in the element.
material: UThe ID of the material assigned to the element.
Trait Implementations§
impl<U> Copy for E3T<U>
impl<U> StructuralPartialEq for E3T<U>
Auto Trait Implementations§
impl<U> Freeze for E3T<U>
impl<U> RefUnwindSafe for E3T<U>
impl<U> Send for E3T<U>
impl<U> Sync for E3T<U>
impl<U> Unpin for E3T<U>
impl<U> UnwindSafe for E3T<U>
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