pub struct PathSlice<'a>(pub &'a [PathVerb], pub &'a [Point]);Expand description
A structure that represents a slice of path data using separate arrays for verbs and points.
Tuple Fields§
§0: &'a [PathVerb]§1: &'a [Point]Implementations§
Trait Implementations§
Source§impl<'a> IntoIterator for PathSlice<'a>
impl<'a> IntoIterator for PathSlice<'a>
impl<'a> Copy for PathSlice<'a>
Auto Trait Implementations§
impl<'a> Freeze for PathSlice<'a>
impl<'a> RefUnwindSafe for PathSlice<'a>
impl<'a> Send for PathSlice<'a>
impl<'a> Sync for PathSlice<'a>
impl<'a> Unpin for PathSlice<'a>
impl<'a> UnsafeUnpin for PathSlice<'a>
impl<'a> UnwindSafe for PathSlice<'a>
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