pub struct InternalRdpGoExecuteScriptRequest {
pub private_ip: Option<String>,
pub request_id: Option<String>,
pub script_runner: Option<String>,
pub script_content_encoded: Option<String>,
pub wait_till_end: Option<bool>,
}
Fields§
§private_ip: Option<String>
§request_id: Option<String>
§script_runner: Option<String>
§script_content_encoded: Option<String>
§wait_till_end: Option<bool>
Implementations§
Source§impl InternalRdpGoExecuteScriptRequest
impl InternalRdpGoExecuteScriptRequest
pub fn new() -> Self
pub fn with_private_ip(self, private_ip: String) -> Self
pub fn with_request_id(self, request_id: String) -> Self
pub fn with_script_runner(self, script_runner: String) -> Self
pub fn with_script_content_encoded(self, script_content_encoded: String) -> Self
pub fn with_wait_till_end(self, wait_till_end: bool) -> Self
Trait Implementations§
Source§impl Clone for InternalRdpGoExecuteScriptRequest
impl Clone for InternalRdpGoExecuteScriptRequest
Source§fn clone(&self) -> InternalRdpGoExecuteScriptRequest
fn clone(&self) -> InternalRdpGoExecuteScriptRequest
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 Default for InternalRdpGoExecuteScriptRequest
impl Default for InternalRdpGoExecuteScriptRequest
Source§fn default() -> InternalRdpGoExecuteScriptRequest
fn default() -> InternalRdpGoExecuteScriptRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalRdpGoExecuteScriptRequest
impl<'de> Deserialize<'de> for InternalRdpGoExecuteScriptRequest
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 HttpBuilder for InternalRdpGoExecuteScriptRequest
impl HttpBuilder for InternalRdpGoExecuteScriptRequest
type Response = BaseResponse<InternalRdpGoExecuteScriptResponse>
fn builder(self) -> HttpFn<Self::Response>
Auto Trait Implementations§
impl Freeze for InternalRdpGoExecuteScriptRequest
impl RefUnwindSafe for InternalRdpGoExecuteScriptRequest
impl Send for InternalRdpGoExecuteScriptRequest
impl Sync for InternalRdpGoExecuteScriptRequest
impl Unpin for InternalRdpGoExecuteScriptRequest
impl UnwindSafe for InternalRdpGoExecuteScriptRequest
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