pub struct SchematicRectangle {
pub start: Option<[f64; 2]>,
pub end: Option<[f64; 2]>,
pub uuid: Option<String>,
}Fields§
§start: Option<[f64; 2]>§end: Option<[f64; 2]>§uuid: Option<String>Trait Implementations§
Source§impl Clone for SchematicRectangle
impl Clone for SchematicRectangle
Source§fn clone(&self) -> SchematicRectangle
fn clone(&self) -> SchematicRectangle
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 Debug for SchematicRectangle
impl Debug for SchematicRectangle
Source§impl PartialEq for SchematicRectangle
impl PartialEq for SchematicRectangle
impl StructuralPartialEq for SchematicRectangle
Auto Trait Implementations§
impl Freeze for SchematicRectangle
impl RefUnwindSafe for SchematicRectangle
impl Send for SchematicRectangle
impl Sync for SchematicRectangle
impl Unpin for SchematicRectangle
impl UnsafeUnpin for SchematicRectangle
impl UnwindSafe for SchematicRectangle
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