pub struct UserDataReplyPayload {
pub channel: u8,
pub data: Option<String>,
}
Fields§
§channel: u8
stdio channel is 1, other channels unknown.
data: Option<String>
Bytes read from stdout.
Trait Implementations§
Source§impl Clone for UserDataReplyPayload
impl Clone for UserDataReplyPayload
Source§fn clone(&self) -> UserDataReplyPayload
fn clone(&self) -> UserDataReplyPayload
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 Debug for UserDataReplyPayload
impl Debug for UserDataReplyPayload
Source§impl Decode for UserDataReplyPayload
impl Decode for UserDataReplyPayload
Source§impl PartialEq for UserDataReplyPayload
impl PartialEq for UserDataReplyPayload
impl Eq for UserDataReplyPayload
impl StructuralPartialEq for UserDataReplyPayload
Auto Trait Implementations§
impl Freeze for UserDataReplyPayload
impl RefUnwindSafe for UserDataReplyPayload
impl Send for UserDataReplyPayload
impl Sync for UserDataReplyPayload
impl Unpin for UserDataReplyPayload
impl UnwindSafe for UserDataReplyPayload
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