pub struct FileChooserOpenedParams {
pub frame_id: Box<FrameId>,
pub mode: FileChooserOpenedMode,
pub backend_node_id: Option<BackendNodeId>,
}Expand description
Emitted only when page.interceptFileChooser is enabled.
fileChooserOpened
Fields§
§frame_id: Box<FrameId>Id of the frame containing input node.
mode: FileChooserOpenedModeInput mode.
backend_node_id: Option<BackendNodeId>Input node id. Only present for file choosers opened via an <input type="file"> element.
Trait Implementations§
Source§impl Clone for FileChooserOpenedParams
impl Clone for FileChooserOpenedParams
Source§fn clone(&self) -> FileChooserOpenedParams
fn clone(&self) -> FileChooserOpenedParams
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 FileChooserOpenedParams
impl Debug for FileChooserOpenedParams
Source§impl<'de> Deserialize<'de> for FileChooserOpenedParams
impl<'de> Deserialize<'de> for FileChooserOpenedParams
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 PartialEq for FileChooserOpenedParams
impl PartialEq for FileChooserOpenedParams
Source§impl Serialize for FileChooserOpenedParams
impl Serialize for FileChooserOpenedParams
impl StructuralPartialEq for FileChooserOpenedParams
Auto Trait Implementations§
impl Freeze for FileChooserOpenedParams
impl RefUnwindSafe for FileChooserOpenedParams
impl Send for FileChooserOpenedParams
impl Sync for FileChooserOpenedParams
impl Unpin for FileChooserOpenedParams
impl UnsafeUnpin for FileChooserOpenedParams
impl UnwindSafe for FileChooserOpenedParams
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