pub enum IncludeScope {
AllWindows,
}Expand description
include scope literal — currently only all-windows (system popups
pierce the app frame).
Variants§
AllWindows
Include all windows (system popups, alerts) above the app frame.
Implementations§
Source§impl IncludeScope
impl IncludeScope
Sourcepub fn query_value(self) -> &'static str
pub fn query_value(self) -> &'static str
kebab-case wire string used in the query parameter value.
Trait Implementations§
Source§impl Clone for IncludeScope
impl Clone for IncludeScope
Source§fn clone(&self) -> IncludeScope
fn clone(&self) -> IncludeScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IncludeScope
Source§impl Debug for IncludeScope
impl Debug for IncludeScope
Source§impl<'de> Deserialize<'de> for IncludeScope
impl<'de> Deserialize<'de> for IncludeScope
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 IncludeScope
Source§impl PartialEq for IncludeScope
impl PartialEq for IncludeScope
Source§impl Serialize for IncludeScope
impl Serialize for IncludeScope
impl StructuralPartialEq for IncludeScope
Auto Trait Implementations§
impl Freeze for IncludeScope
impl RefUnwindSafe for IncludeScope
impl Send for IncludeScope
impl Sync for IncludeScope
impl Unpin for IncludeScope
impl UnsafeUnpin for IncludeScope
impl UnwindSafe for IncludeScope
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