pub struct WebViewCollection {
webviews: HashMap<WebViewId, WebView>,
pub(crate) creation_order: Vec<WebViewId>,
active_webview_id: Option<WebViewId>,
}Fields§
§webviews: HashMap<WebViewId, WebView>List of top-level browsing contexts. Modified by EmbedderMsg::WebViewOpened and EmbedderMsg::WebViewClosed, and we exit if it ever becomes empty.
creation_order: Vec<WebViewId>The order in which the webviews were created.
active_webview_id: Option<WebViewId>Implementations§
Source§impl WebViewCollection
impl WebViewCollection
pub fn add(&mut self, webview: WebView)
pub fn get(&self, id: WebViewId) -> Option<&WebView>
pub fn contains(&self, id: WebViewId) -> bool
pub fn active(&self) -> Option<&WebView>
pub fn active_id(&self) -> Option<WebViewId>
Sourcepub fn newest(&self) -> Option<&WebView>
pub fn newest(&self) -> Option<&WebView>
Gets a reference to the most recently created webview, if any.
pub fn all_in_creation_order( &self, ) -> impl Iterator<Item = (WebViewId, &WebView)>
Sourcepub fn values(&self) -> impl Iterator<Item = &WebView>
pub fn values(&self) -> impl Iterator<Item = &WebView>
Returns an iterator over all webview references (in arbitrary order).
pub(crate) fn activate_webview(&mut self, id_to_activate: WebViewId)
pub(crate) fn activate_webview_by_index(&mut self, index: usize)
Trait Implementations§
Source§impl Default for WebViewCollection
impl Default for WebViewCollection
Source§fn default() -> WebViewCollection
fn default() -> WebViewCollection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WebViewCollection
impl !RefUnwindSafe for WebViewCollection
impl !Send for WebViewCollection
impl !Sync for WebViewCollection
impl Unpin for WebViewCollection
impl !UnwindSafe for WebViewCollection
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
Source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
Source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
Source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert