pub struct Polygon2DCollection {
pub header: Header,
pub polygons: Vec<Polygon2D>,
pub colors: Vec<ColorRGBA>,
}Fields§
§header: Header§polygons: Vec<Polygon2D>§colors: Vec<ColorRGBA>Trait Implementations§
Source§impl Clone for Polygon2DCollection
impl Clone for Polygon2DCollection
Source§fn clone(&self) -> Polygon2DCollection
fn clone(&self) -> Polygon2DCollection
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 Polygon2DCollection
impl Debug for Polygon2DCollection
Source§impl Default for Polygon2DCollection
impl Default for Polygon2DCollection
Source§impl<'de> Deserialize<'de> for Polygon2DCollection
impl<'de> Deserialize<'de> for Polygon2DCollection
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 Polygon2DCollection
impl PartialEq for Polygon2DCollection
Source§impl Serialize for Polygon2DCollection
impl Serialize for Polygon2DCollection
impl Message for Polygon2DCollection
impl StructuralPartialEq for Polygon2DCollection
Auto Trait Implementations§
impl Freeze for Polygon2DCollection
impl RefUnwindSafe for Polygon2DCollection
impl Send for Polygon2DCollection
impl Sync for Polygon2DCollection
impl Unpin for Polygon2DCollection
impl UnwindSafe for Polygon2DCollection
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