pub struct FileChooserInfo {
pub frame_id: String,
pub backend_node_id: u32,
pub multiple: bool,
}Expand description
Information about an intercepted file chooser dialog
Fields§
§frame_id: StringFrame ID where the chooser was triggered
backend_node_id: u32Backend node ID of the file input element
multiple: boolWhether multiple files are accepted
Trait Implementations§
Source§impl Clone for FileChooserInfo
impl Clone for FileChooserInfo
Source§fn clone(&self) -> FileChooserInfo
fn clone(&self) -> FileChooserInfo
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 moreSource§impl Debug for FileChooserInfo
impl Debug for FileChooserInfo
Source§impl<'de> Deserialize<'de> for FileChooserInfo
impl<'de> Deserialize<'de> for FileChooserInfo
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
Auto Trait Implementations§
impl Freeze for FileChooserInfo
impl RefUnwindSafe for FileChooserInfo
impl Send for FileChooserInfo
impl Sync for FileChooserInfo
impl Unpin for FileChooserInfo
impl UnsafeUnpin for FileChooserInfo
impl UnwindSafe for FileChooserInfo
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