pub struct BackgroundFillStyleList { /* private fields */ }Implementations§
Source§impl BackgroundFillStyleList
impl BackgroundFillStyleList
pub fn get_solid_fill(&self) -> &[SolidFill]
pub fn get_solid_fill_mut(&mut self) -> &mut ThinVec<SolidFill>
pub fn set_solid_fill( &mut self, value: impl Into<ThinVec<SolidFill>>, ) -> &mut Self
pub fn add_solid_fill(&mut self, value: SolidFill) -> &mut Self
pub fn get_gradient_fill_collection(&self) -> &[GradientFill]
pub fn get_gradient_fill_collectionl_mut( &mut self, ) -> &mut ThinVec<GradientFill>
pub fn set_gradient_fill_collection( &mut self, value: impl Into<ThinVec<GradientFill>>, ) -> &mut Self
pub fn add_gradient_fill_collection(&mut self, value: GradientFill) -> &mut Self
Trait Implementations§
Source§impl Clone for BackgroundFillStyleList
impl Clone for BackgroundFillStyleList
Source§fn clone(&self) -> BackgroundFillStyleList
fn clone(&self) -> BackgroundFillStyleList
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 BackgroundFillStyleList
impl Debug for BackgroundFillStyleList
Source§impl Default for BackgroundFillStyleList
impl Default for BackgroundFillStyleList
Source§fn default() -> BackgroundFillStyleList
fn default() -> BackgroundFillStyleList
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BackgroundFillStyleList
impl RefUnwindSafe for BackgroundFillStyleList
impl Send for BackgroundFillStyleList
impl Sync for BackgroundFillStyleList
impl Unpin for BackgroundFillStyleList
impl UnwindSafe for BackgroundFillStyleList
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