pub struct AccentColorParser;Expand description
Re-export core tailwind-rs functionality Parser for accent color utilities
Implementations§
Source§impl AccentColorParser
impl AccentColorParser
Sourcepub fn new() -> AccentColorParser
pub fn new() -> AccentColorParser
Create a new accent color parser
Trait Implementations§
Source§impl Clone for AccentColorParser
impl Clone for AccentColorParser
Source§fn clone(&self) -> AccentColorParser
fn clone(&self) -> AccentColorParser
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 AccentColorParser
impl Debug for AccentColorParser
Source§impl Default for AccentColorParser
impl Default for AccentColorParser
Source§fn default() -> AccentColorParser
fn default() -> AccentColorParser
Returns the “default value” for a type. Read more
Source§impl UtilityParser for AccentColorParser
impl UtilityParser for AccentColorParser
Source§fn parse_class(&self, class: &str) -> Option<Vec<CssProperty>>
fn parse_class(&self, class: &str) -> Option<Vec<CssProperty>>
Parse a class and return CSS properties
Source§fn get_supported_patterns(&self) -> Vec<&'static str>
fn get_supported_patterns(&self) -> Vec<&'static str>
Get supported patterns for this parser
Source§fn get_priority(&self) -> u32
fn get_priority(&self) -> u32
Get parser priority (higher = more specific)
Source§fn get_category(&self) -> ParserCategory
fn get_category(&self) -> ParserCategory
Get parser category
Auto Trait Implementations§
impl Freeze for AccentColorParser
impl RefUnwindSafe for AccentColorParser
impl Send for AccentColorParser
impl Sync for AccentColorParser
impl Unpin for AccentColorParser
impl UnwindSafe for AccentColorParser
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