pub struct KnownLimitation {
pub id: LimitationId,
pub description: String,
pub details: String,
}Expand description
A known browser surface that is visible but not yet covered by stealth diagnostics.
Fields§
§id: LimitationIdWhich limitation was observed.
description: StringHuman-readable description of the uncovered surface.
details: StringRuntime detail from the page context.
Trait Implementations§
Source§impl Clone for KnownLimitation
impl Clone for KnownLimitation
Source§fn clone(&self) -> KnownLimitation
fn clone(&self) -> KnownLimitation
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 KnownLimitation
impl Debug for KnownLimitation
Source§impl<'de> Deserialize<'de> for KnownLimitation
impl<'de> Deserialize<'de> for KnownLimitation
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
Auto Trait Implementations§
impl Freeze for KnownLimitation
impl RefUnwindSafe for KnownLimitation
impl Send for KnownLimitation
impl Sync for KnownLimitation
impl Unpin for KnownLimitation
impl UnsafeUnpin for KnownLimitation
impl UnwindSafe for KnownLimitation
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