pub struct PageFrame {
pub id: String,
pub parent_id: Option<String>,
pub loader_id: Option<String>,
pub security_origin: Option<String>,
pub mime_type: Option<String>,
pub name: Option<String>,
pub url: String,
}Expand description
Page frame metadata.
Fields§
§id: StringFrame id.
parent_id: Option<String>Parent frame id, when present.
loader_id: Option<String>Loader id, when present.
security_origin: Option<String>Security origin.
mime_type: Option<String>MIME type, when known.
name: Option<String>Frame name, when present.
url: StringCurrent frame URL.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PageFrame
impl<'de> Deserialize<'de> for PageFrame
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 Eq for PageFrame
impl StructuralPartialEq for PageFrame
Auto Trait Implementations§
impl Freeze for PageFrame
impl RefUnwindSafe for PageFrame
impl Send for PageFrame
impl Sync for PageFrame
impl Unpin for PageFrame
impl UnsafeUnpin for PageFrame
impl UnwindSafe for PageFrame
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