#[repr(C)]pub struct ItemsGetRequest {
pub type_: Uint32,
pub extra: Uint32,
}Expand description
The wire type corresponding to ItemsGetRequest.
Fields§
§type_: Uint32§extra: Uint32Trait Implementations§
Source§impl Clone for ItemsGetRequest
impl Clone for ItemsGetRequest
Source§fn clone(&self) -> ItemsGetRequest
fn clone(&self) -> ItemsGetRequest
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 Constrained for ItemsGetRequest
impl Constrained for ItemsGetRequest
Source§impl Debug for ItemsGetRequest
impl Debug for ItemsGetRequest
Source§impl<___D> Decode<___D> for ItemsGetRequestwhere
___D: InternalHandleDecoder + ?Sized,
impl<___D> Decode<___D> for ItemsGetRequestwhere
___D: InternalHandleDecoder + ?Sized,
Source§impl<___E> Encode<ItemsGetRequest, ___E> for ItemsGetRequestwhere
___E: InternalHandleEncoder + ?Sized,
impl<___E> Encode<ItemsGetRequest, ___E> for ItemsGetRequestwhere
___E: InternalHandleEncoder + ?Sized,
Source§const COPY_OPTIMIZATION: CopyOptimization<Self, ItemsGetRequest>
const COPY_OPTIMIZATION: CopyOptimization<Self, ItemsGetRequest>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ItemsGetRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ItemsGetRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
Source§impl<'a, ___E> Encode<ItemsGetRequest, ___E> for &'a ItemsGetRequestwhere
___E: InternalHandleEncoder + ?Sized,
impl<'a, ___E> Encode<ItemsGetRequest, ___E> for &'a ItemsGetRequestwhere
___E: InternalHandleEncoder + ?Sized,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ItemsGetRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ItemsGetRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E, T0, T1> Encode<ItemsGetRequest, ___E> for ItemsGetRequest<T0, T1>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<Uint32, ___E>,
T1: Encode<Uint32, ___E>,
impl<___E, T0, T1> Encode<ItemsGetRequest, ___E> for ItemsGetRequest<T0, T1>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<Uint32, ___E>,
T1: Encode<Uint32, ___E>,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ItemsGetRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ItemsGetRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl FromWire<ItemsGetRequest> for ItemsGetRequest
impl FromWire<ItemsGetRequest> for ItemsGetRequest
Source§const COPY_OPTIMIZATION: CopyOptimization<ItemsGetRequest, Self>
const COPY_OPTIMIZATION: CopyOptimization<ItemsGetRequest, Self>
Source§fn from_wire(wire: ItemsGetRequest) -> Self
fn from_wire(wire: ItemsGetRequest) -> Self
Converts the given owned value to this type.
Source§impl FromWireRef<ItemsGetRequest> for ItemsGetRequest
impl FromWireRef<ItemsGetRequest> for ItemsGetRequest
Source§fn from_wire_ref(wire: &ItemsGetRequest) -> Self
fn from_wire_ref(wire: &ItemsGetRequest) -> Self
Converts the given reference to this type.
Source§impl IntoNatural for ItemsGetRequest
impl IntoNatural for ItemsGetRequest
Source§type Natural = ItemsGetRequest
type Natural = ItemsGetRequest
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for ItemsGetRequest
impl Wire for ItemsGetRequest
Source§type Narrowed<'de> = ItemsGetRequest
type Narrowed<'de> = ItemsGetRequest
The narrowed wire type, restricted to the
'de lifetime.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 ItemsGetRequest
impl RefUnwindSafe for ItemsGetRequest
impl Send for ItemsGetRequest
impl Sync for ItemsGetRequest
impl Unpin for ItemsGetRequest
impl UnsafeUnpin for ItemsGetRequest
impl UnwindSafe for ItemsGetRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]