pub struct LayerMut<'a> { /* private fields */ }
Expand description
Mutable reference to a layer in a scaled outline.
Implementations§
source§impl<'a> LayerMut<'a>
impl<'a> LayerMut<'a>
sourcepub fn points_mut(&'a mut self) -> &'a mut [Point]
pub fn points_mut(&'a mut self) -> &'a mut [Point]
Returns a mutable reference the sequence of points for the layer.
sourcepub fn color_index(&self) -> Option<u16>
pub fn color_index(&self) -> Option<u16>
Returns the color index for the layer.
Auto Trait Implementations§
impl<'a> Freeze for LayerMut<'a>
impl<'a> RefUnwindSafe for LayerMut<'a>
impl<'a> Send for LayerMut<'a>
impl<'a> Sync for LayerMut<'a>
impl<'a> Unpin for LayerMut<'a>
impl<'a> !UnwindSafe for LayerMut<'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