pub struct CapabilityStoreDirConnectorOpenRequest {
pub id: u64,
pub server_end: ServerEnd<Channel, Directory>,
}
Fields§
§id: u64
§server_end: ServerEnd<Channel, Directory>
Trait Implementations§
Source§impl Encodable for CapabilityStoreDirConnectorOpenRequest
impl Encodable for CapabilityStoreDirConnectorOpenRequest
Source§type Encoded = WireCapabilityStoreDirConnectorOpenRequest
type Encoded = WireCapabilityStoreDirConnectorOpenRequest
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<CapabilityStoreDirConnectorOpenRequest>
impl EncodableOption for Box<CapabilityStoreDirConnectorOpenRequest>
Source§type EncodedOption = WireBox<WireCapabilityStoreDirConnectorOpenRequest>
type EncodedOption = WireBox<WireCapabilityStoreDirConnectorOpenRequest>
The wire type for the optional value.
Source§impl<___E> Encode<___E> for CapabilityStoreDirConnectorOpenRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for CapabilityStoreDirConnectorOpenRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§impl<___E> EncodeOption<___E> for Box<CapabilityStoreDirConnectorOpenRequest>where
___E: Encoder + ?Sized,
CapabilityStoreDirConnectorOpenRequest: Encode<___E>,
impl<___E> EncodeOption<___E> for Box<CapabilityStoreDirConnectorOpenRequest>where
___E: Encoder + ?Sized,
CapabilityStoreDirConnectorOpenRequest: 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<WireCapabilityStoreDirConnectorOpenRequest> for CapabilityStoreDirConnectorOpenRequest
impl TakeFrom<WireCapabilityStoreDirConnectorOpenRequest> for CapabilityStoreDirConnectorOpenRequest
Source§fn take_from(from: &WireCapabilityStoreDirConnectorOpenRequest) -> Self
fn take_from(from: &WireCapabilityStoreDirConnectorOpenRequest) -> 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 CapabilityStoreDirConnectorOpenRequest
impl RefUnwindSafe for CapabilityStoreDirConnectorOpenRequest
impl Send for CapabilityStoreDirConnectorOpenRequest
impl Sync for CapabilityStoreDirConnectorOpenRequest
impl Unpin for CapabilityStoreDirConnectorOpenRequest
impl UnwindSafe for CapabilityStoreDirConnectorOpenRequest
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