pub struct Frame {
pub id: String,
pub parent_id: Option<String>,
pub loader_id: String,
pub name: Option<String>,
pub url: String,
pub security_origin: Option<String>,
pub mime_type: Option<String>,
}Expand description
Frame information.
Fields§
§id: StringFrame unique identifier.
parent_id: Option<String>Parent frame identifier.
loader_id: StringIdentifier of the loader associated with this frame.
name: Option<String>Frame’s name as specified in the tag.
url: StringFrame document’s URL.
security_origin: Option<String>Frame document’s security origin.
mime_type: Option<String>Frame document’s mimeType.
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
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