pub struct OuterShadow { /* private fields */ }Implementations§
Source§impl OuterShadow
impl OuterShadow
pub fn blur_radius(&self) -> Option<&str>
pub fn get_blur_radius(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use blur_radius()
pub fn set_blur_radius<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn horizontal_ratio(&self) -> Option<&str>
pub fn get_horizontal_ratio(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use horizontal_ratio()
pub fn set_horizontal_ratio<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn vertical_ratio(&self) -> Option<&str>
pub fn get_vertical_ratio(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use vertical_ratio()
pub fn set_vertical_ratio<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn alignment(&self) -> Option<&str>
pub fn get_alignment(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use alignment()
pub fn set_alignment<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn direction(&self) -> Option<&str>
pub fn get_direction(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use direction()
pub fn set_direction<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn distance(&self) -> Option<&str>
pub fn get_distance(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use distance()
pub fn set_distance<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn rotate_with_shape(&self) -> Option<&str>
pub fn get_rotate_with_shape(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use rotate_with_shape()
pub fn set_rotate_with_shape<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn preset_color(&self) -> Option<&PresetColor>
pub fn get_preset_color(&self) -> Option<&PresetColor>
👎Deprecated since 3.0.0:
Use preset_color()
pub fn preset_color_mut(&mut self) -> Option<&mut PresetColor>
pub fn get_preset_color_mut(&mut self) -> Option<&mut PresetColor>
👎Deprecated since 3.0.0:
Use preset_color_mut()
pub fn set_preset_color(&mut self, value: PresetColor) -> &mut Self
pub fn scheme_color(&self) -> Option<&SchemeColor>
pub fn get_scheme_color(&self) -> Option<&SchemeColor>
👎Deprecated since 3.0.0:
Use scheme_color()
pub fn scheme_color_mut(&mut self) -> Option<&mut SchemeColor>
pub fn get_scheme_color_mut(&mut self) -> Option<&mut SchemeColor>
👎Deprecated since 3.0.0:
Use scheme_color_mut()
pub fn set_scheme_color(&mut self, value: SchemeColor) -> &mut Self
pub fn rgb_color_model_hex(&self) -> Option<&RgbColorModelHex>
pub fn get_rgb_color_model_hex(&self) -> Option<&RgbColorModelHex>
👎Deprecated since 3.0.0:
Use rgb_color_model_hex()
pub fn rgb_color_model_hex_mut(&mut self) -> Option<&mut RgbColorModelHex>
pub fn get_rgb_color_model_hex_mut(&mut self) -> Option<&mut RgbColorModelHex>
👎Deprecated since 3.0.0:
Use rgb_color_model_hex_mut()
pub fn set_rgb_color_model_hex(&mut self, value: RgbColorModelHex) -> &mut Self
Trait Implementations§
Source§impl Clone for OuterShadow
impl Clone for OuterShadow
Source§fn clone(&self) -> OuterShadow
fn clone(&self) -> OuterShadow
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 OuterShadow
impl Debug for OuterShadow
Source§impl Default for OuterShadow
impl Default for OuterShadow
Source§fn default() -> OuterShadow
fn default() -> OuterShadow
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OuterShadow
impl RefUnwindSafe for OuterShadow
impl Send for OuterShadow
impl Sync for OuterShadow
impl Unpin for OuterShadow
impl UnsafeUnpin for OuterShadow
impl UnwindSafe for OuterShadow
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