pub enum GradientStop {
From(Color),
Via(Color),
To(Color),
}
Expand description
Represents gradient stops in Tailwind CSS
Variants§
From(Color)
From stop (starting color)
Via(Color)
Via stop (middle color)
To(Color)
To stop (ending color)
Implementations§
Source§impl GradientStop
impl GradientStop
Sourcepub fn to_class_name(&self) -> String
pub fn to_class_name(&self) -> String
Convert to Tailwind CSS class name
Sourcepub fn to_css_value(&self) -> String
pub fn to_css_value(&self) -> String
Convert to CSS value
Trait Implementations§
Source§impl Clone for GradientStop
impl Clone for GradientStop
Source§fn clone(&self) -> GradientStop
fn clone(&self) -> GradientStop
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 Debug for GradientStop
impl Debug for GradientStop
Source§impl<'de> Deserialize<'de> for GradientStop
impl<'de> Deserialize<'de> for GradientStop
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GradientStop
impl Display for GradientStop
Source§impl Hash for GradientStop
impl Hash for GradientStop
Source§impl PartialEq for GradientStop
impl PartialEq for GradientStop
Source§impl Serialize for GradientStop
impl Serialize for GradientStop
impl Eq for GradientStop
impl StructuralPartialEq for GradientStop
Auto Trait Implementations§
impl Freeze for GradientStop
impl RefUnwindSafe for GradientStop
impl Send for GradientStop
impl Sync for GradientStop
impl Unpin for GradientStop
impl UnwindSafe for GradientStop
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.