pub struct StylesheetSource {
pub href: String,
pub css: String,
}Expand description
Source stylesheet payload in chapter cascade order.
Fields§
§href: StringArchive path or inline marker for this stylesheet.
css: StringRaw CSS bytes decoded as UTF-8.
Trait Implementations§
Source§impl Clone for StylesheetSource
impl Clone for StylesheetSource
Source§fn clone(&self) -> StylesheetSource
fn clone(&self) -> StylesheetSource
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 StylesheetSource
impl Debug for StylesheetSource
Source§impl PartialEq for StylesheetSource
impl PartialEq for StylesheetSource
impl Eq for StylesheetSource
impl StructuralPartialEq for StylesheetSource
Auto Trait Implementations§
impl Freeze for StylesheetSource
impl RefUnwindSafe for StylesheetSource
impl Send for StylesheetSource
impl Sync for StylesheetSource
impl Unpin for StylesheetSource
impl UnsafeUnpin for StylesheetSource
impl UnwindSafe for StylesheetSource
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