#[repr(C)]pub struct PLYLayoutAxisX<T> {
pub independent: bool,
pub start: T,
pub end: T,
}Expand description
Abstract type that contains a value of the given type for each horizontal edge of a rectangle.
Fields§
§independent: boolWhether the this axis is layout direction independent or not.
start: TValue for the left edge or leading edge if independent is false.
end: TValue for the right edge or trailing edge if independent is false.
Trait Implementations§
Source§impl<T: Clone> Clone for PLYLayoutAxisX<T>
impl<T: Clone> Clone for PLYLayoutAxisX<T>
Source§fn clone(&self) -> PLYLayoutAxisX<T>
fn clone(&self) -> PLYLayoutAxisX<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 PLYLayoutAxisX<T>
impl<T: Debug> Debug for PLYLayoutAxisX<T>
impl<T: Copy> Copy for PLYLayoutAxisX<T>
Auto Trait Implementations§
impl<T> Freeze for PLYLayoutAxisX<T>where
T: Freeze,
impl<T> RefUnwindSafe for PLYLayoutAxisX<T>where
T: RefUnwindSafe,
impl<T> Send for PLYLayoutAxisX<T>where
T: Send,
impl<T> Sync for PLYLayoutAxisX<T>where
T: Sync,
impl<T> Unpin for PLYLayoutAxisX<T>where
T: Unpin,
impl<T> UnsafeUnpin for PLYLayoutAxisX<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for PLYLayoutAxisX<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