pub struct CreatedOutput { /* private fields */ }Expand description
Represents a newly created output.
Implementations§
Trait Implementations§
Source§impl Clone for CreatedOutput
impl Clone for CreatedOutput
Source§fn clone(&self) -> CreatedOutput
fn clone(&self) -> CreatedOutput
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 CreatedOutput
impl Debug for CreatedOutput
Source§impl Deref for CreatedOutput
impl Deref for CreatedOutput
Source§impl Packable for CreatedOutput
impl Packable for CreatedOutput
Source§fn packed_len(&self) -> usize
fn packed_len(&self) -> usize
Returns the length of the packed bytes.
Source§fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
Packs the instance to bytes and writes them to the passed writer.
Source§fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R,
) -> Result<Self, Self::Error>
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>( reader: &mut R, ) -> Result<Self, Self::Error>
Reads bytes from the passed reader and unpacks them into an instance.
Source§fn pack_new(&self) -> Vec<u8> ⓘ
fn pack_new(&self) -> Vec<u8> ⓘ
Packs the instance to bytes and writes them to a newly allocated vector.
Source§impl PartialEq for CreatedOutput
impl PartialEq for CreatedOutput
impl Eq for CreatedOutput
impl StructuralPartialEq for CreatedOutput
Auto Trait Implementations§
impl Freeze for CreatedOutput
impl RefUnwindSafe for CreatedOutput
impl Send for CreatedOutput
impl Sync for CreatedOutput
impl Unpin for CreatedOutput
impl UnwindSafe for CreatedOutput
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