pub struct ParsedVectorClip {
pub scale: i32,
pub polygons: Vec<Vec<Point>>,
}Fields§
§scale: i32§polygons: Vec<Vec<Point>>Implementations§
Trait Implementations§
Source§impl Clone for ParsedVectorClip
impl Clone for ParsedVectorClip
Source§fn clone(&self) -> ParsedVectorClip
fn clone(&self) -> ParsedVectorClip
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 ParsedVectorClip
impl Debug for ParsedVectorClip
Source§impl Default for ParsedVectorClip
impl Default for ParsedVectorClip
Source§fn default() -> ParsedVectorClip
fn default() -> ParsedVectorClip
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedVectorClip
impl PartialEq for ParsedVectorClip
Source§fn eq(&self, other: &ParsedVectorClip) -> bool
fn eq(&self, other: &ParsedVectorClip) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParsedVectorClip
impl StructuralPartialEq for ParsedVectorClip
Auto Trait Implementations§
impl Freeze for ParsedVectorClip
impl RefUnwindSafe for ParsedVectorClip
impl Send for ParsedVectorClip
impl Sync for ParsedVectorClip
impl Unpin for ParsedVectorClip
impl UnsafeUnpin for ParsedVectorClip
impl UnwindSafe for ParsedVectorClip
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