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