pub struct CapabilityStoreDictionaryKeysRequest {
pub id: u64,
pub iterator: ServerEnd<Channel, DictionaryKeysIterator>,
}
Fields§
§id: u64
§iterator: ServerEnd<Channel, DictionaryKeysIterator>
Trait Implementations§
Source§impl Encodable for CapabilityStoreDictionaryKeysRequest
impl Encodable for CapabilityStoreDictionaryKeysRequest
Source§type Encoded = WireCapabilityStoreDictionaryKeysRequest
type Encoded = WireCapabilityStoreDictionaryKeysRequest
The wire type for the value.
§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
encoding instead of calling
encode
. Read moreSource§impl EncodableOption for Box<CapabilityStoreDictionaryKeysRequest>
impl EncodableOption for Box<CapabilityStoreDictionaryKeysRequest>
Source§type EncodedOption = WireBox<WireCapabilityStoreDictionaryKeysRequest>
type EncodedOption = WireBox<WireCapabilityStoreDictionaryKeysRequest>
The wire type for the optional value.
Source§impl<___E> Encode<___E> for CapabilityStoreDictionaryKeysRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for CapabilityStoreDictionaryKeysRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryKeysRequest>where
___E: Encoder + ?Sized,
CapabilityStoreDictionaryKeysRequest: Encode<___E>,
impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryKeysRequest>where
___E: Encoder + ?Sized,
CapabilityStoreDictionaryKeysRequest: Encode<___E>,
Source§fn encode_option(
this: Option<&mut Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Self::EncodedOption>,
) -> Result<(), EncodeError>
fn encode_option( this: Option<&mut Self>, encoder: &mut ___E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl TakeFrom<WireCapabilityStoreDictionaryKeysRequest> for CapabilityStoreDictionaryKeysRequest
impl TakeFrom<WireCapabilityStoreDictionaryKeysRequest> for CapabilityStoreDictionaryKeysRequest
Source§fn take_from(from: &WireCapabilityStoreDictionaryKeysRequest) -> Self
fn take_from(from: &WireCapabilityStoreDictionaryKeysRequest) -> 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 moreAuto Trait Implementations§
impl Freeze for CapabilityStoreDictionaryKeysRequest
impl RefUnwindSafe for CapabilityStoreDictionaryKeysRequest
impl Send for CapabilityStoreDictionaryKeysRequest
impl Sync for CapabilityStoreDictionaryKeysRequest
impl Unpin for CapabilityStoreDictionaryKeysRequest
impl UnwindSafe for CapabilityStoreDictionaryKeysRequest
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