#[repr(C)]pub struct PLYByEdge<T> {
pub horizontal: PLYLayoutAxisX<T>,
pub vertical: PLYLayoutAxisY<T>,
}Expand description
An abstract type that contains a value of the given type for each edge of a rectangle.
Fields§
§horizontal: PLYLayoutAxisX<T>Values for the horizontal edges.
vertical: PLYLayoutAxisY<T>Values for the vertical edges.
Trait Implementations§
impl<T: Copy> Copy for PLYByEdge<T>
Auto Trait Implementations§
impl<T> Freeze for PLYByEdge<T>where
T: Freeze,
impl<T> RefUnwindSafe for PLYByEdge<T>where
T: RefUnwindSafe,
impl<T> Send for PLYByEdge<T>where
T: Send,
impl<T> Sync for PLYByEdge<T>where
T: Sync,
impl<T> Unpin for PLYByEdge<T>where
T: Unpin,
impl<T> UnsafeUnpin for PLYByEdge<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for PLYByEdge<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