#[repr(C)]pub struct PLYLayoutAxisY<T> {
pub top: T,
pub bottom: T,
}Expand description
An abstract type that contains a value of the given type for each vertical edge of a rectangle.
Fields§
§top: TValue for the top edge.
bottom: TValue for the bottom edge.
Trait Implementations§
Source§impl<T: Clone> Clone for PLYLayoutAxisY<T>
impl<T: Clone> Clone for PLYLayoutAxisY<T>
Source§fn clone(&self) -> PLYLayoutAxisY<T>
fn clone(&self) -> PLYLayoutAxisY<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for PLYLayoutAxisY<T>
impl<T: Debug> Debug for PLYLayoutAxisY<T>
impl<T: Copy> Copy for PLYLayoutAxisY<T>
Auto Trait Implementations§
impl<T> Freeze for PLYLayoutAxisY<T>where
T: Freeze,
impl<T> RefUnwindSafe for PLYLayoutAxisY<T>where
T: RefUnwindSafe,
impl<T> Send for PLYLayoutAxisY<T>where
T: Send,
impl<T> Sync for PLYLayoutAxisY<T>where
T: Sync,
impl<T> Unpin for PLYLayoutAxisY<T>where
T: Unpin,
impl<T> UnsafeUnpin for PLYLayoutAxisY<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for PLYLayoutAxisY<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