Skip to main content

EngineCapabilities

Struct EngineCapabilities 

Source
pub struct EngineCapabilities {
    pub renders: bool,
    pub honors_viewport: bool,
    pub measures_layout: bool,
    pub persists_auth: bool,
    pub inspector_console: bool,
    pub inspector_network: bool,
    pub name: &'static str,
    pub version: &'static str,
}
Expand description

What an engine declares it can and cannot do.

Fields§

§renders: bool

Renders pixels (pages are visually realized; capture works).

§honors_viewport: bool

Honors set_viewport requests.

§measures_layout: bool

Computes layout boxes (layout works).

§persists_auth: bool

Persists and restores cookies / storage (save_auth / load_auth work).

§inspector_console: bool

Captures console.* and uncaught exceptions in a ring buffer (M5.7 PR1+). Surfaced via vs_inspect console.

§inspector_network: bool

Captures network requests in a ring buffer (M5.7 PR1+). Surfaced via vs_inspect network.

§name: &'static str

Short identifier reported in vs_status.

§version: &'static str

Engine version string. Empty for the stub.

Implementations§

Source§

impl EngineCapabilities

Source

pub const TEST: Self

Capabilities advertised by the in-memory TestEngine (in test_support). Sealed behind the test-support Cargo feature; production builds of the daemon never see this.

Trait Implementations§

Source§

impl Clone for EngineCapabilities

Source§

fn clone(&self) -> EngineCapabilities

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for EngineCapabilities

Source§

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

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

impl PartialEq for EngineCapabilities

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 EngineCapabilities

Source§

impl Eq for EngineCapabilities

Source§

impl StructuralPartialEq for EngineCapabilities

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.