pub struct ScanResults {
pub classes: HashSet<String>,
pub responsive_classes: HashMap<String, HashSet<String>>,
pub conditional_classes: HashMap<String, HashSet<String>>,
pub classes_by_file: HashMap<PathBuf, HashSet<String>>,
pub stats: ScanStats,
}Expand description
Results of a class scanning operation
Fields§
§classes: HashSet<String>All extracted class names
responsive_classes: HashMap<String, HashSet<String>>Responsive classes by breakpoint
conditional_classes: HashMap<String, HashSet<String>>Conditional classes by condition
classes_by_file: HashMap<PathBuf, HashSet<String>>Classes by file
stats: ScanStatsStatistics
Trait Implementations§
Source§impl Clone for ScanResults
impl Clone for ScanResults
Source§fn clone(&self) -> ScanResults
fn clone(&self) -> ScanResults
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 moreAuto Trait Implementations§
impl Freeze for ScanResults
impl RefUnwindSafe for ScanResults
impl Send for ScanResults
impl Sync for ScanResults
impl Unpin for ScanResults
impl UnwindSafe for ScanResults
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