pub struct NormalBlurEffect {
pub type: Type,
pub visible: bool,
pub radius: f64,
pub bound_variables: Option<Box<BaseBlurEffectBoundVariables>>,
pub blur_type: Option<BlurType>,
}
Fields§
§type: Type
A string literal representing the effect’s type. Always check the type before reading other properties.
visible: bool
Whether this blur is active.
radius: f64
Radius of the blur effect
bound_variables: Option<Box<BaseBlurEffectBoundVariables>>
§blur_type: Option<BlurType>
The string literal ‘NORMAL’ representing the blur type. Always check the blurType before reading other properties.
Implementations§
Trait Implementations§
Source§impl Clone for NormalBlurEffect
impl Clone for NormalBlurEffect
Source§fn clone(&self) -> NormalBlurEffect
fn clone(&self) -> NormalBlurEffect
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 NormalBlurEffect
impl Debug for NormalBlurEffect
Source§impl Default for NormalBlurEffect
impl Default for NormalBlurEffect
Source§fn default() -> NormalBlurEffect
fn default() -> NormalBlurEffect
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NormalBlurEffect
impl<'de> Deserialize<'de> for NormalBlurEffect
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NormalBlurEffect
impl PartialEq for NormalBlurEffect
Source§impl Serialize for NormalBlurEffect
impl Serialize for NormalBlurEffect
impl StructuralPartialEq for NormalBlurEffect
Auto Trait Implementations§
impl Freeze for NormalBlurEffect
impl RefUnwindSafe for NormalBlurEffect
impl Send for NormalBlurEffect
impl Sync for NormalBlurEffect
impl Unpin for NormalBlurEffect
impl UnwindSafe for NormalBlurEffect
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