pub struct OutputPacketBytesVec {
pub data: Vec<u8>,
}Fields§
§data: Vec<u8>Implementations§
Trait Implementations§
Source§impl Debug for OutputPacketBytesVec
impl Debug for OutputPacketBytesVec
Source§impl Default for OutputPacketBytesVec
impl Default for OutputPacketBytesVec
Source§fn default() -> OutputPacketBytesVec
fn default() -> OutputPacketBytesVec
Returns the “default value” for a type. Read more
Source§impl From<OutputPacketBytesVec> for InputPacketBytesPrepared
impl From<OutputPacketBytesVec> for InputPacketBytesPrepared
Source§fn from(output: OutputPacketBytesVec) -> Self
fn from(output: OutputPacketBytesVec) -> Self
Converts to this type from the input type.
Source§impl From<OutputPacketBytesVec> for Vec<u8>
impl From<OutputPacketBytesVec> for Vec<u8>
Source§fn from(data: OutputPacketBytesVec) -> Self
fn from(data: OutputPacketBytesVec) -> Self
Converts to this type from the input type.
Source§impl OutputPacketBytes for OutputPacketBytesVec
impl OutputPacketBytes for OutputPacketBytesVec
fn write_byte<'life0, 'async_trait>(
&'life0 mut self,
byte: u8,
) -> Pin<Box<dyn Future<Output = OutputPacketBytesResult> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn write_bytes<'life0, 'life1, 'async_trait>(
&'life0 mut self,
slice: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = OutputPacketBytesResult> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for OutputPacketBytesVec
impl RefUnwindSafe for OutputPacketBytesVec
impl Send for OutputPacketBytesVec
impl Sync for OutputPacketBytesVec
impl Unpin for OutputPacketBytesVec
impl UnwindSafe for OutputPacketBytesVec
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