pub struct CSSStyleSheetHeader {Show 18 fields
pub style_sheet_id: StyleSheetId,
pub frame_id: FrameId,
pub source_url: String,
pub source_map_url: Option<String>,
pub origin: StyleSheetOrigin,
pub title: String,
pub owner_node: Option<BackendNodeId>,
pub disabled: bool,
pub has_source_url: Option<bool>,
pub is_inline: bool,
pub is_mutable: bool,
pub is_constructed: bool,
pub start_line: JsFloat,
pub start_column: JsFloat,
pub length: JsFloat,
pub end_line: JsFloat,
pub end_column: JsFloat,
pub loading_failed: Option<bool>,
}
Fields§
§style_sheet_id: StyleSheetId
§frame_id: FrameId
§source_url: String
§source_map_url: Option<String>
§origin: StyleSheetOrigin
§title: String
§owner_node: Option<BackendNodeId>
§disabled: bool
§has_source_url: Option<bool>
§is_inline: bool
§is_mutable: bool
§is_constructed: bool
§start_line: JsFloat
§start_column: JsFloat
§length: JsFloat
§end_line: JsFloat
§end_column: JsFloat
§loading_failed: Option<bool>
Trait Implementations§
Source§impl Clone for CSSStyleSheetHeader
impl Clone for CSSStyleSheetHeader
Source§fn clone(&self) -> CSSStyleSheetHeader
fn clone(&self) -> CSSStyleSheetHeader
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 CSSStyleSheetHeader
impl Debug for CSSStyleSheetHeader
Source§impl<'de> Deserialize<'de> for CSSStyleSheetHeader
impl<'de> Deserialize<'de> for CSSStyleSheetHeader
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 PartialEq for CSSStyleSheetHeader
impl PartialEq for CSSStyleSheetHeader
Source§impl Serialize for CSSStyleSheetHeader
impl Serialize for CSSStyleSheetHeader
impl StructuralPartialEq for CSSStyleSheetHeader
Auto Trait Implementations§
impl Freeze for CSSStyleSheetHeader
impl RefUnwindSafe for CSSStyleSheetHeader
impl Send for CSSStyleSheetHeader
impl Sync for CSSStyleSheetHeader
impl Unpin for CSSStyleSheetHeader
impl UnwindSafe for CSSStyleSheetHeader
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more