pub struct ProxySubmitPayload {
pub proxy_id: String,
pub external_id: String,
pub command_name: String,
pub args: Vec<String>,
pub target: ProxyTarget,
}Expand description
Server↔Skill: submit a command via the proxy relay.
Fields§
§proxy_id: String§external_id: String§command_name: String§args: Vec<String>§target: ProxyTargetTrait Implementations§
Source§impl Clone for ProxySubmitPayload
impl Clone for ProxySubmitPayload
Source§fn clone(&self) -> ProxySubmitPayload
fn clone(&self) -> ProxySubmitPayload
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 ProxySubmitPayload
impl Debug for ProxySubmitPayload
Source§impl<'de> Deserialize<'de> for ProxySubmitPayload
impl<'de> Deserialize<'de> for ProxySubmitPayload
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 ProxySubmitPayload
impl RefUnwindSafe for ProxySubmitPayload
impl Send for ProxySubmitPayload
impl Sync for ProxySubmitPayload
impl Unpin for ProxySubmitPayload
impl UnsafeUnpin for ProxySubmitPayload
impl UnwindSafe for ProxySubmitPayload
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