pub enum ChromeAuxiliaryWindowResponse {
ExtensionInstallPrompt {
proceed: bool,
},
ExtensionUninstallPrompt {
proceed: bool,
report_abuse: bool,
},
PermissionPrompt {
allow: bool,
},
DownloadPrompt {
allow: bool,
destination_path: Option<String>,
},
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for ChromeAuxiliaryWindowResponse
impl Clone for ChromeAuxiliaryWindowResponse
Source§fn clone(&self) -> ChromeAuxiliaryWindowResponse
fn clone(&self) -> ChromeAuxiliaryWindowResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<AuxiliaryWindowResponse> for ChromeAuxiliaryWindowResponse
impl From<AuxiliaryWindowResponse> for ChromeAuxiliaryWindowResponse
Source§fn from(value: AuxiliaryWindowResponse) -> Self
fn from(value: AuxiliaryWindowResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeAuxiliaryWindowResponse
impl PartialEq for ChromeAuxiliaryWindowResponse
Source§fn eq(&self, other: &ChromeAuxiliaryWindowResponse) -> bool
fn eq(&self, other: &ChromeAuxiliaryWindowResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ChromeAuxiliaryWindowResponse
impl StructuralPartialEq for ChromeAuxiliaryWindowResponse
Auto Trait Implementations§
impl Freeze for ChromeAuxiliaryWindowResponse
impl RefUnwindSafe for ChromeAuxiliaryWindowResponse
impl Send for ChromeAuxiliaryWindowResponse
impl Sync for ChromeAuxiliaryWindowResponse
impl Unpin for ChromeAuxiliaryWindowResponse
impl UnsafeUnpin for ChromeAuxiliaryWindowResponse
impl UnwindSafe for ChromeAuxiliaryWindowResponse
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