pub struct EffectSystem { /* private fields */ }
Implementations§
Source§impl EffectSystem
impl EffectSystem
Source§impl EffectSystem
impl EffectSystem
pub fn get_box_shadow(&self, name: &str) -> String
pub fn insert_box_shadow<K, V>(&mut self, key: K, value: V)
pub fn set_box_shadow_default<V>(&mut self, value: V)
pub fn get_drop_shadow(&self, name: &str) -> String
pub fn insert_drop_shadow<K, V>(&mut self, key: K, value: V)
pub fn set_drop_shadow_default<V>(&mut self, value: V)
Trait Implementations§
Source§impl Clone for EffectSystem
impl Clone for EffectSystem
Source§fn clone(&self) -> EffectSystem
fn clone(&self) -> EffectSystem
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 Debug for EffectSystem
impl Debug for EffectSystem
Source§impl Default for EffectSystem
impl Default for EffectSystem
Source§fn default() -> EffectSystem
fn default() -> EffectSystem
Returns the “default value” for a type. Read more
Source§impl Hash for EffectSystem
impl Hash for EffectSystem
Source§impl PartialEq for EffectSystem
impl PartialEq for EffectSystem
impl Eq for EffectSystem
impl StructuralPartialEq for EffectSystem
Auto Trait Implementations§
impl Freeze for EffectSystem
impl RefUnwindSafe for EffectSystem
impl Send for EffectSystem
impl Sync for EffectSystem
impl Unpin for EffectSystem
impl UnwindSafe for EffectSystem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more