pub struct BaseShadowEffectBoundVariables {
pub radius: Option<Box<VariableAlias>>,
pub spread: Option<Box<VariableAlias>>,
pub color: Option<Box<VariableAlias>>,
pub offset_x: Option<Box<VariableAlias>>,
pub offset_y: Option<Box<VariableAlias>>,
}
Expand description
BaseShadowEffectBoundVariables : The variables bound to a particular field on this shadow effect
Fields§
§radius: Option<Box<VariableAlias>>
§spread: Option<Box<VariableAlias>>
§color: Option<Box<VariableAlias>>
§offset_x: Option<Box<VariableAlias>>
§offset_y: Option<Box<VariableAlias>>
Implementations§
Source§impl BaseShadowEffectBoundVariables
impl BaseShadowEffectBoundVariables
Sourcepub fn new() -> BaseShadowEffectBoundVariables
pub fn new() -> BaseShadowEffectBoundVariables
The variables bound to a particular field on this shadow effect
Trait Implementations§
Source§impl Clone for BaseShadowEffectBoundVariables
impl Clone for BaseShadowEffectBoundVariables
Source§fn clone(&self) -> BaseShadowEffectBoundVariables
fn clone(&self) -> BaseShadowEffectBoundVariables
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 Default for BaseShadowEffectBoundVariables
impl Default for BaseShadowEffectBoundVariables
Source§fn default() -> BaseShadowEffectBoundVariables
fn default() -> BaseShadowEffectBoundVariables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaseShadowEffectBoundVariables
impl<'de> Deserialize<'de> for BaseShadowEffectBoundVariables
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 BaseShadowEffectBoundVariables
impl PartialEq for BaseShadowEffectBoundVariables
Source§fn eq(&self, other: &BaseShadowEffectBoundVariables) -> bool
fn eq(&self, other: &BaseShadowEffectBoundVariables) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BaseShadowEffectBoundVariables
Auto Trait Implementations§
impl Freeze for BaseShadowEffectBoundVariables
impl RefUnwindSafe for BaseShadowEffectBoundVariables
impl Send for BaseShadowEffectBoundVariables
impl Sync for BaseShadowEffectBoundVariables
impl Unpin for BaseShadowEffectBoundVariables
impl UnwindSafe for BaseShadowEffectBoundVariables
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