#[repr(C)]pub struct WireWritableWriteRequest {
pub data: WireVector<u8>,
}
Expand description
The wire type corresponding to WritableWriteRequest
.
Fields§
§data: WireVector<u8>
Trait Implementations§
Source§impl Debug for WireWritableWriteRequest
impl Debug for WireWritableWriteRequest
Source§impl<___D> Decode<___D> for WireWritableWriteRequestwhere
___D: InternalHandleDecoder + ?Sized + Decoder,
impl<___D> Decode<___D> for WireWritableWriteRequestwhere
___D: InternalHandleDecoder + ?Sized + Decoder,
Source§impl TakeFrom<WireWritableWriteRequest> for WritableWriteRequest
impl TakeFrom<WireWritableWriteRequest> for WritableWriteRequest
Source§fn take_from(from: &WireWritableWriteRequest) -> Self
fn take_from(from: &WireWritableWriteRequest) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreSource§impl TakeFrom<WireWritableWriteRequest> for WritableWriteRequest
impl TakeFrom<WireWritableWriteRequest> for WritableWriteRequest
Source§fn take_from(from: &WireWritableWriteRequest) -> Self
fn take_from(from: &WireWritableWriteRequest) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreSource§impl ZeroPadding for WireWritableWriteRequest
impl ZeroPadding for WireWritableWriteRequest
Source§fn zero_padding(out: &mut MaybeUninit<Self>)
fn zero_padding(out: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl Freeze for WireWritableWriteRequest
impl RefUnwindSafe for WireWritableWriteRequest
impl Send for WireWritableWriteRequest
impl Sync for WireWritableWriteRequest
impl Unpin for WireWritableWriteRequest
impl UnwindSafe for WireWritableWriteRequest
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