pub struct ComplexPolygon2D {
pub outer: Polygon2D,
pub inner: Vec<Polygon2D>,
}Fields§
§outer: Polygon2D§inner: Vec<Polygon2D>Trait Implementations§
Source§impl Clone for ComplexPolygon2D
impl Clone for ComplexPolygon2D
Source§fn clone(&self) -> ComplexPolygon2D
fn clone(&self) -> ComplexPolygon2D
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 ComplexPolygon2D
impl Debug for ComplexPolygon2D
Source§impl Default for ComplexPolygon2D
impl Default for ComplexPolygon2D
Source§impl<'de> Deserialize<'de> for ComplexPolygon2D
impl<'de> Deserialize<'de> for ComplexPolygon2D
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ComplexPolygon2D
impl PartialEq for ComplexPolygon2D
Source§impl Serialize for ComplexPolygon2D
impl Serialize for ComplexPolygon2D
impl Message for ComplexPolygon2D
impl StructuralPartialEq for ComplexPolygon2D
Auto Trait Implementations§
impl Freeze for ComplexPolygon2D
impl RefUnwindSafe for ComplexPolygon2D
impl Send for ComplexPolygon2D
impl Sync for ComplexPolygon2D
impl Unpin for ComplexPolygon2D
impl UnwindSafe for ComplexPolygon2D
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