pub struct BoxShadow {
pub clip_mode: BoxShadowClipMode,
pub top: Option<CssPropertyValue<StyleBoxShadow>>,
pub right: Option<CssPropertyValue<StyleBoxShadow>>,
pub bottom: Option<CssPropertyValue<StyleBoxShadow>>,
pub left: Option<CssPropertyValue<StyleBoxShadow>>,
}Fields§
§clip_mode: BoxShadowClipMode§top: Option<CssPropertyValue<StyleBoxShadow>>§right: Option<CssPropertyValue<StyleBoxShadow>>§bottom: Option<CssPropertyValue<StyleBoxShadow>>§left: Option<CssPropertyValue<StyleBoxShadow>>Trait Implementations§
Source§impl Ord for BoxShadow
impl Ord for BoxShadow
Source§impl PartialOrd for BoxShadow
impl PartialOrd for BoxShadow
impl Copy for BoxShadow
impl Eq for BoxShadow
impl StructuralPartialEq for BoxShadow
Auto Trait Implementations§
impl Freeze for BoxShadow
impl RefUnwindSafe for BoxShadow
impl Send for BoxShadow
impl Sync for BoxShadow
impl Unpin for BoxShadow
impl UnwindSafe for BoxShadow
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