pub struct PlanarExtent {
pub name: String,
pub size_in_x: f64,
pub size_in_y: f64,
}Fields§
§name: String§size_in_x: f64§size_in_y: f64Trait Implementations§
Source§impl Clone for PlanarExtent
impl Clone for PlanarExtent
Source§fn clone(&self) -> PlanarExtent
fn clone(&self) -> PlanarExtent
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 moreSource§impl Debug for PlanarExtent
impl Debug for PlanarExtent
Source§impl PartialEq for PlanarExtent
impl PartialEq for PlanarExtent
Source§fn eq(&self, other: &PlanarExtent) -> bool
fn eq(&self, other: &PlanarExtent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlanarExtent
Auto Trait Implementations§
impl Freeze for PlanarExtent
impl RefUnwindSafe for PlanarExtent
impl Send for PlanarExtent
impl Sync for PlanarExtent
impl Unpin for PlanarExtent
impl UnsafeUnpin for PlanarExtent
impl UnwindSafe for PlanarExtent
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