pub enum BrowsingContext {
Empty,
Blank,
Self_,
Parent,
Top,
}
Expand description
A browsing context is an environment in which Document objects are presented to the user.
Variants§
Empty
Represents an empty browsing context.
Blank
Represents a “_blank” browsing context.
Self_
Represents a “_self” browsing context.
Parent
Represents a “_parent” browsing context.
Top
Represents a “_top” browsing context.
Trait Implementations§
Source§impl Debug for BrowsingContext
impl Debug for BrowsingContext
Auto Trait Implementations§
impl Freeze for BrowsingContext
impl RefUnwindSafe for BrowsingContext
impl Send for BrowsingContext
impl Sync for BrowsingContext
impl Unpin for BrowsingContext
impl UnwindSafe for BrowsingContext
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