pub struct GlowEffect {
pub color: String,
pub opacity: f64,
pub radius: f64,
}Fields§
§color: String§opacity: f64§radius: f64Trait Implementations§
Source§impl Clone for GlowEffect
impl Clone for GlowEffect
Source§fn clone(&self) -> GlowEffect
fn clone(&self) -> GlowEffect
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 GlowEffect
impl Debug for GlowEffect
Source§impl PartialEq for GlowEffect
impl PartialEq for GlowEffect
Source§impl Serialize for GlowEffect
impl Serialize for GlowEffect
impl StructuralPartialEq for GlowEffect
Auto Trait Implementations§
impl Freeze for GlowEffect
impl RefUnwindSafe for GlowEffect
impl Send for GlowEffect
impl Sync for GlowEffect
impl Unpin for GlowEffect
impl UnsafeUnpin for GlowEffect
impl UnwindSafe for GlowEffect
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