Struct cdp::dom::SetFileInputFilesCommand [] [src]

pub struct SetFileInputFilesCommand<'a> {
    pub files: Vec<Cow<'a, str>>,
    pub node_id: Option<NodeId>,
    pub backend_node_id: Option<BackendNodeId>,
    pub object_id: Option<RemoteObjectId<'a>>,
}

[Experimental] Sets files for the given file input element.

Command DOM.setFileInputFiles

Domain Module: cdp::dom
Command Struct: cdp::dom::SetFileInputFilesCommand
Response Struct: cdp::dom::SetFileInputFilesResponse

Fields

Array of file paths to set.

Identifier of the node.

Identifier of the backend node.

JavaScript object id of the node wrapper.

Trait Implementations

impl<'a> Clone for SetFileInputFilesCommand<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for SetFileInputFilesCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for SetFileInputFilesCommand<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for SetFileInputFilesCommand<'a>
[src]

COMMAND_NAME: &'static str = "DOM.setFileInputFiles"

impl<'a> SerializeCdpCommand for SetFileInputFilesCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for SetFileInputFilesCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for SetFileInputFilesCommand<'a>
[src]