#[repr(C)]pub union PointValue {
pub coordinate: PointCoordinate,
pub _padding: [u64; 2],
}Expand description
Point value union.
Fields§
§coordinate: PointCoordinateCoordinate (used for all tag variants).
_padding: [u64; 2]Padding for ABI compatibility. Do not use.
Trait Implementations§
Source§impl Clone for PointValue
impl Clone for PointValue
Source§fn clone(&self) -> PointValue
fn clone(&self) -> PointValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointValue
Auto Trait Implementations§
impl Freeze for PointValue
impl RefUnwindSafe for PointValue
impl Send for PointValue
impl Sync for PointValue
impl Unpin for PointValue
impl UnsafeUnpin for PointValue
impl UnwindSafe for PointValue
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