pub struct DrawOptions {
pub fill_color: Option<(u8, u8, u8)>,
pub stroke_color: Option<(u8, u8, u8)>,
pub stroke_size: f64,
}
Fields§
§fill_color: Option<(u8, u8, u8)>
§stroke_color: Option<(u8, u8, u8)>
§stroke_size: f64
Implementations§
Source§impl DrawOptions
impl DrawOptions
Trait Implementations§
Source§impl Clone for DrawOptions
impl Clone for DrawOptions
Source§fn clone(&self) -> DrawOptions
fn clone(&self) -> DrawOptions
Returns a copy 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 PartialEq for DrawOptions
impl PartialEq for DrawOptions
impl Copy for DrawOptions
impl StructuralPartialEq for DrawOptions
Auto Trait Implementations§
impl Freeze for DrawOptions
impl RefUnwindSafe for DrawOptions
impl Send for DrawOptions
impl Sync for DrawOptions
impl Unpin for DrawOptions
impl UnwindSafe for DrawOptions
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