pub struct OuterShadow {
pub color: String,
pub opacity: f64,
pub blur_radius: f64,
pub distance: f64,
pub direction_degrees: f64,
}Fields§
§color: String§opacity: f64§blur_radius: f64§distance: f64§direction_degrees: f64Trait Implementations§
Source§impl Clone for OuterShadow
impl Clone for OuterShadow
Source§impl Debug for OuterShadow
impl Debug for OuterShadow
Source§impl PartialEq for OuterShadow
impl PartialEq for OuterShadow
Source§impl Serialize for OuterShadow
impl Serialize for OuterShadow
impl StructuralPartialEq for OuterShadow
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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