WebResourceContext

Enum WebResourceContext 

Source
#[repr(u32)]
pub enum WebResourceContext {
Show 17 variants All = 0, Document = 1, Stylesheet = 2, Image = 3, Media = 4, Font = 5, Script = 6, XmlHttpRequest = 7, Fetch = 8, TextTrack = 9, EventSource = 10, Websocket = 11, Manifest = 12, SignedExchange = 13, Ping = 14, CspViolationReport = 15, Other = 16,
}
Expand description

Specifies the web resource request contexts.

Variants§

§

All = 0

Specifies all resources.

§

Document = 1

Specifies a document resource.

§

Stylesheet = 2

Specifies a CSS resource.

§

Image = 3

Specifies an image resource.

§

Media = 4

Specifies another media resource such as a video.

§

Font = 5

Specifies a font resource.

§

Script = 6

Specifies a script resource.

§

XmlHttpRequest = 7

Specifies an XML HTTP request.

§

Fetch = 8

Specifies a Fetch API communication.

§

TextTrack = 9

Specifies a TextTrack resource.

§

EventSource = 10

Specifies an EventSource API communication.

§

Websocket = 11

Specifies a WebSocket API communication.

§

Manifest = 12

Specifies a Web App Manifest.

§

SignedExchange = 13

Specifies a Signed HTTP Exchange.

§

Ping = 14

Specifies a Ping request.

§

CspViolationReport = 15

Specifies a CSP Violation Report.

§

Other = 16

Specifies an other resource.

Trait Implementations§

Source§

impl Clone for WebResourceContext

Source§

fn clone(&self) -> WebResourceContext

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WebResourceContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl PartialEq for WebResourceContext

Source§

fn eq(&self, other: &WebResourceContext) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for WebResourceContext

Source§

impl Eq for WebResourceContext

Source§

impl StructuralPartialEq for WebResourceContext

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.