pub struct Frame {Show 15 fields
pub id: FrameId,
pub parent_id: Option<FrameId>,
pub loader_id: LoaderId,
pub name: Option<String>,
pub url: String,
pub url_fragment: Option<String>,
pub domain_and_registry: String,
pub security_origin: String,
pub security_origin_details: Option<SecurityOriginDetails>,
pub mime_type: String,
pub unreachable_url: Option<String>,
pub ad_frame_status: Option<AdFrameStatus>,
pub secure_context_type: SecureContextType,
pub cross_origin_isolated_context_type: CrossOriginIsolatedContextType,
pub gated_api_features: Vec<GatedApiFeatures>,
}Fields§
§id: FrameId§parent_id: Option<FrameId>§loader_id: LoaderId§name: Option<String>§url: String§url_fragment: Option<String>§domain_and_registry: String§security_origin: String§security_origin_details: Option<SecurityOriginDetails>§mime_type: String§unreachable_url: Option<String>§ad_frame_status: Option<AdFrameStatus>§secure_context_type: SecureContextType§cross_origin_isolated_context_type: CrossOriginIsolatedContextType§gated_api_features: Vec<GatedApiFeatures>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Frame
impl<'de> Deserialize<'de> for Frame
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
impl StructuralPartialEq for Frame
Auto Trait Implementations§
impl Freeze for Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
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