pub struct FileChooserOpenedEventParams {
pub frame_id: FrameId,
pub mode: FileChooserOpenedModeOption,
pub backend_node_id: Option<BackendNodeId>,
}Fields§
§frame_id: FrameIdId of the frame containing input node.
mode: FileChooserOpenedModeOptionInput 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 FileChooserOpenedEventParams
impl Clone for FileChooserOpenedEventParams
Source§fn clone(&self) -> FileChooserOpenedEventParams
fn clone(&self) -> FileChooserOpenedEventParams
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 FileChooserOpenedEventParams
impl Debug for FileChooserOpenedEventParams
Source§impl<'de> Deserialize<'de> for FileChooserOpenedEventParams
impl<'de> Deserialize<'de> for FileChooserOpenedEventParams
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 FileChooserOpenedEventParams
impl PartialEq for FileChooserOpenedEventParams
Source§fn eq(&self, other: &FileChooserOpenedEventParams) -> bool
fn eq(&self, other: &FileChooserOpenedEventParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileChooserOpenedEventParams
Auto Trait Implementations§
impl Freeze for FileChooserOpenedEventParams
impl RefUnwindSafe for FileChooserOpenedEventParams
impl Send for FileChooserOpenedEventParams
impl Sync for FileChooserOpenedEventParams
impl Unpin for FileChooserOpenedEventParams
impl UnsafeUnpin for FileChooserOpenedEventParams
impl UnwindSafe for FileChooserOpenedEventParams
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