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