pub struct Sided<T> {
pub front: T,
pub back: T,
}
Expand description
A generic struct holding the properties of two sides of a polygon.
Fields§
§front: T
Information about the front face.
back: T
Information about the back face.
Implementations§
Trait Implementations§
impl<T: Copy> Copy for Sided<T>
impl<T: Eq> Eq for Sided<T>
impl<T> StructuralPartialEq for Sided<T>
Auto Trait Implementations§
impl<T> Freeze for Sided<T>where
T: Freeze,
impl<T> RefUnwindSafe for Sided<T>where
T: RefUnwindSafe,
impl<T> Send for Sided<T>where
T: Send,
impl<T> Sync for Sided<T>where
T: Sync,
impl<T> Unpin for Sided<T>where
T: Unpin,
impl<T> UnwindSafe for Sided<T>where
T: UnwindSafe,
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