pub enum CssInlineMode {
None,
Inline,
Scoped,
DataKey,
DataValue,
}
Variants§
None
<img class="tailwind"/>
Inline
<img style="key:value"/>
Scoped
<img class="_b2JmdXNjYXRl"/>
DataKey
<img data-tw-b2JmdXNjYXRl/>
DataValue
<img data-tw="b2JmdXNjYXRl"/>
Trait Implementations§
Source§impl Clone for CssInlineMode
impl Clone for CssInlineMode
Source§fn clone(&self) -> CssInlineMode
fn clone(&self) -> CssInlineMode
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 CssInlineMode
impl Debug for CssInlineMode
Source§impl Default for CssInlineMode
impl Default for CssInlineMode
Source§impl Hash for CssInlineMode
impl Hash for CssInlineMode
Source§impl Ord for CssInlineMode
impl Ord for CssInlineMode
Source§fn cmp(&self, other: &CssInlineMode) -> Ordering
fn cmp(&self, other: &CssInlineMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CssInlineMode
impl PartialEq for CssInlineMode
Source§impl PartialOrd for CssInlineMode
impl PartialOrd for CssInlineMode
impl Eq for CssInlineMode
impl StructuralPartialEq for CssInlineMode
Auto Trait Implementations§
impl Freeze for CssInlineMode
impl RefUnwindSafe for CssInlineMode
impl Send for CssInlineMode
impl Sync for CssInlineMode
impl Unpin for CssInlineMode
impl UnwindSafe for CssInlineMode
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