pub struct SetFileInputFilesParams {
pub files: Vec<String>,
pub node_id: Option<NodeId>,
pub backend_node_id: Option<BackendNodeId>,
pub object_id: Option<String>,
}Expand description
Parameters for DOM.setFileInputFiles.
Sets files for the given file input element.
Fields§
§files: Vec<String>Array of file paths to set.
node_id: Option<NodeId>Identifier of the node.
backend_node_id: Option<BackendNodeId>Identifier of the backend node.
object_id: Option<String>JavaScript object id of the node wrapper.
Trait Implementations§
Source§impl Clone for SetFileInputFilesParams
impl Clone for SetFileInputFilesParams
Source§fn clone(&self) -> SetFileInputFilesParams
fn clone(&self) -> SetFileInputFilesParams
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 SetFileInputFilesParams
impl Debug for SetFileInputFilesParams
Auto Trait Implementations§
impl Freeze for SetFileInputFilesParams
impl RefUnwindSafe for SetFileInputFilesParams
impl Send for SetFileInputFilesParams
impl Sync for SetFileInputFilesParams
impl Unpin for SetFileInputFilesParams
impl UnwindSafe for SetFileInputFilesParams
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