pub struct SetFileInputFilesBuilder { /* private fields */ }Expand description
Builder for SetFileInputFiles.
Implementations§
Source§impl SetFileInputFilesBuilder
impl SetFileInputFilesBuilder
Sourcepub fn files<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self
pub fn files<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self
Array of file paths to set.
Sourcepub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
pub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
Identifier of the node.
Sourcepub fn backend_node_id<VALUE: Into<BackendNodeId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn backend_node_id<VALUE: Into<BackendNodeId>>( &mut self, value: VALUE, ) -> &mut Self
Identifier of the backend node.
Sourcepub fn object_id<VALUE: Into<RemoteObjectId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn object_id<VALUE: Into<RemoteObjectId>>( &mut self, value: VALUE, ) -> &mut Self
JavaScript object id of the node wrapper.
Sourcepub fn build(&self) -> Result<SetFileInputFiles, SetFileInputFilesBuilderError>
pub fn build(&self) -> Result<SetFileInputFiles, SetFileInputFilesBuilderError>
Trait Implementations§
Source§impl Clone for SetFileInputFilesBuilder
impl Clone for SetFileInputFilesBuilder
Source§fn clone(&self) -> SetFileInputFilesBuilder
fn clone(&self) -> SetFileInputFilesBuilder
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 moreAuto Trait Implementations§
impl Freeze for SetFileInputFilesBuilder
impl RefUnwindSafe for SetFileInputFilesBuilder
impl Send for SetFileInputFilesBuilder
impl Sync for SetFileInputFilesBuilder
impl Unpin for SetFileInputFilesBuilder
impl UnsafeUnpin for SetFileInputFilesBuilder
impl UnwindSafe for SetFileInputFilesBuilder
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