pub struct ProxyChunkPayload {
pub proxy_id: String,
pub seq: u64,
pub data: Vec<u8>,
}Expand description
Host→Skill: a chunk of proxied stdout (202) or stderr (203) output.
Fields§
§proxy_id: String§seq: u64§data: Vec<u8>Trait Implementations§
Source§impl Clone for ProxyChunkPayload
impl Clone for ProxyChunkPayload
Source§fn clone(&self) -> ProxyChunkPayload
fn clone(&self) -> ProxyChunkPayload
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 ProxyChunkPayload
impl Debug for ProxyChunkPayload
Source§impl<'de> Deserialize<'de> for ProxyChunkPayload
impl<'de> Deserialize<'de> for ProxyChunkPayload
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 ProxyChunkPayload
impl RefUnwindSafe for ProxyChunkPayload
impl Send for ProxyChunkPayload
impl Sync for ProxyChunkPayload
impl Unpin for ProxyChunkPayload
impl UnsafeUnpin for ProxyChunkPayload
impl UnwindSafe for ProxyChunkPayload
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