pub struct FileChooserOpened {
pub method: FileChooserOpenedMethod,
pub params: FileChooserOpenedParams,
}Expand description
Emitted only when page.interceptFileChooser is enabled.
fileChooserOpened
Fields§
§method: FileChooserOpenedMethod§params: FileChooserOpenedParamsImplementations§
Source§impl FileChooserOpened
impl FileChooserOpened
pub const IDENTIFIER: &'static str = "Page.fileChooserOpened"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for FileChooserOpened
impl Clone for FileChooserOpened
Source§fn clone(&self) -> FileChooserOpened
fn clone(&self) -> FileChooserOpened
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 Debug for FileChooserOpened
impl Debug for FileChooserOpened
Source§impl<'de> Deserialize<'de> for FileChooserOpened
impl<'de> Deserialize<'de> for FileChooserOpened
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
Source§impl From<FileChooserOpened> for BrowserProtocolEvents
impl From<FileChooserOpened> for BrowserProtocolEvents
Source§fn from(v: FileChooserOpened) -> Self
fn from(v: FileChooserOpened) -> Self
Converts to this type from the input type.
Source§impl From<FileChooserOpened> for Event
impl From<FileChooserOpened> for Event
Source§fn from(v: FileChooserOpened) -> Self
fn from(v: FileChooserOpened) -> Self
Converts to this type from the input type.
Source§impl From<FileChooserOpened> for PageEvents
impl From<FileChooserOpened> for PageEvents
Source§fn from(v: FileChooserOpened) -> Self
fn from(v: FileChooserOpened) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FileChooserOpened
impl PartialEq for FileChooserOpened
Source§impl Serialize for FileChooserOpened
impl Serialize for FileChooserOpened
Source§impl TryFrom<BrowserProtocolEvents> for FileChooserOpened
impl TryFrom<BrowserProtocolEvents> for FileChooserOpened
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <FileChooserOpened as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <FileChooserOpened as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for FileChooserOpened
impl TryFrom<Event> for FileChooserOpened
Source§impl TryFrom<PageEvents> for FileChooserOpened
impl TryFrom<PageEvents> for FileChooserOpened
Source§type Error = PageEvents
type Error = PageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageEvents,
) -> Result<Self, <FileChooserOpened as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <FileChooserOpened as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for FileChooserOpened
Auto Trait Implementations§
impl Freeze for FileChooserOpened
impl RefUnwindSafe for FileChooserOpened
impl Send for FileChooserOpened
impl Sync for FileChooserOpened
impl Unpin for FileChooserOpened
impl UnsafeUnpin for FileChooserOpened
impl UnwindSafe for FileChooserOpened
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