pub struct BorderBlockStyle<T>(pub T)
where
T: Clone + Debug + Display + PartialEq + UnitDataType<Self>;Expand description
Tuple Fields§
§0: TImplementations§
Source§impl BorderBlockStyle<BorderBlockStyleValue>
impl BorderBlockStyle<BorderBlockStyleValue>
pub fn initial() -> Self
pub fn inherit() -> Self
pub fn revert() -> Self
pub fn revert_layer() -> Self
pub fn unset() -> Self
pub fn none() -> Self
pub fn dotted() -> Self
pub fn dashed() -> Self
pub fn solid() -> Self
pub fn double() -> Self
pub fn groove() -> Self
pub fn ridge() -> Self
pub fn inset() -> Self
pub fn outset() -> Self
Trait Implementations§
Source§impl<T> Clone for BorderBlockStyle<T>
impl<T> Clone for BorderBlockStyle<T>
Source§fn clone(&self) -> BorderBlockStyle<T>
fn clone(&self) -> BorderBlockStyle<T>
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<T> Debug for BorderBlockStyle<T>
impl<T> Debug for BorderBlockStyle<T>
Source§impl<T> Display for BorderBlockStyle<T>
impl<T> Display for BorderBlockStyle<T>
Source§impl<T> PartialEq for BorderBlockStyle<T>
impl<T> PartialEq for BorderBlockStyle<T>
Source§impl<T> Property for BorderBlockStyle<T>
impl<T> Property for BorderBlockStyle<T>
Source§fn declaration(&self) -> String
fn declaration(&self) -> String
Returns the stringified property name with its value
as a CSS declaration to be used within a declaration block. Read more
Source§impl<T> PropertyName for BorderBlockStyle<T>
impl<T> PropertyName for BorderBlockStyle<T>
fn property_name<'a>(&self) -> &'a str
impl<T> StructuralPartialEq for BorderBlockStyle<T>
impl UnitDataType<BorderBlockStyle<BorderBlockStyleValue>> for BorderBlockStyleValue
impl UnitDataType<BorderBlockStyle<Nothing>> for Nothing
impl<T> UnitDataType<BorderBlockStyle<Var<T>>> for Var<T>
impl<T> UnitDataTypeContainer<T> for BorderBlockStyle<T>
Auto Trait Implementations§
impl<T> Freeze for BorderBlockStyle<T>where
T: Freeze,
impl<T> RefUnwindSafe for BorderBlockStyle<T>where
T: RefUnwindSafe,
impl<T> Send for BorderBlockStyle<T>where
T: Send,
impl<T> Sync for BorderBlockStyle<T>where
T: Sync,
impl<T> Unpin for BorderBlockStyle<T>where
T: Unpin,
impl<T> UnwindSafe for BorderBlockStyle<T>where
T: UnwindSafe,
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