#[repr(C)]pub struct WireDirectoryLinkRequest {
pub src: WireString,
pub dst_parent_token: WireHandle,
pub dst: WireString,
}
Expand description
The wire type corresponding to DirectoryLinkRequest
.
Fields§
§src: WireString
§dst_parent_token: WireHandle
§dst: WireString
Trait Implementations§
Source§impl Debug for WireDirectoryLinkRequest
impl Debug for WireDirectoryLinkRequest
Source§impl<___D> Decode<___D> for WireDirectoryLinkRequestwhere
___D: InternalHandleDecoder + ?Sized + Decoder + HandleDecoder,
impl<___D> Decode<___D> for WireDirectoryLinkRequestwhere
___D: InternalHandleDecoder + ?Sized + Decoder + HandleDecoder,
Source§impl TakeFrom<WireDirectoryLinkRequest> for DirectoryLinkRequest
impl TakeFrom<WireDirectoryLinkRequest> for DirectoryLinkRequest
Source§fn take_from(from: &WireDirectoryLinkRequest) -> Self
fn take_from(from: &WireDirectoryLinkRequest) -> 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<WireDirectoryLinkRequest> for DirectoryLinkRequest
impl TakeFrom<WireDirectoryLinkRequest> for DirectoryLinkRequest
Source§fn take_from(from: &WireDirectoryLinkRequest) -> Self
fn take_from(from: &WireDirectoryLinkRequest) -> 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 WireDirectoryLinkRequest
impl ZeroPadding for WireDirectoryLinkRequest
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 WireDirectoryLinkRequest
impl !RefUnwindSafe for WireDirectoryLinkRequest
impl Send for WireDirectoryLinkRequest
impl !Sync for WireDirectoryLinkRequest
impl Unpin for WireDirectoryLinkRequest
impl UnwindSafe for WireDirectoryLinkRequest
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