pub struct ChapterStylesheets {
pub sources: Vec<StylesheetSource>,
}Expand description
Collection of resolved stylesheet sources.
Fields§
§sources: Vec<StylesheetSource>Sources in cascade order.
Implementations§
Source§impl ChapterStylesheets
impl ChapterStylesheets
Sourcepub fn iter(&self) -> impl Iterator<Item = &StylesheetSource>
pub fn iter(&self) -> impl Iterator<Item = &StylesheetSource>
Iterate all stylesheet sources.
Trait Implementations§
Source§impl Clone for ChapterStylesheets
impl Clone for ChapterStylesheets
Source§fn clone(&self) -> ChapterStylesheets
fn clone(&self) -> ChapterStylesheets
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 ChapterStylesheets
impl Debug for ChapterStylesheets
Source§impl Default for ChapterStylesheets
impl Default for ChapterStylesheets
Source§fn default() -> ChapterStylesheets
fn default() -> ChapterStylesheets
Returns the “default value” for a type. Read more
Source§impl PartialEq for ChapterStylesheets
impl PartialEq for ChapterStylesheets
impl Eq for ChapterStylesheets
impl StructuralPartialEq for ChapterStylesheets
Auto Trait Implementations§
impl Freeze for ChapterStylesheets
impl RefUnwindSafe for ChapterStylesheets
impl Send for ChapterStylesheets
impl Sync for ChapterStylesheets
impl Unpin for ChapterStylesheets
impl UnsafeUnpin for ChapterStylesheets
impl UnwindSafe for ChapterStylesheets
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