#[repr(C)]pub struct WireDirectoryWatchRequest {
pub mask: WireWatchMask,
pub options: WireU32,
pub watcher: ServerEnd<WireChannel, DirectoryWatcher>,
}
Expand description
The wire type corresponding to DirectoryWatchRequest
.
Fields§
§mask: WireWatchMask
§options: WireU32
§watcher: ServerEnd<WireChannel, DirectoryWatcher>
Trait Implementations§
Source§impl Debug for WireDirectoryWatchRequest
impl Debug for WireDirectoryWatchRequest
Source§impl<___D> Decode<___D> for WireDirectoryWatchRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
impl<___D> Decode<___D> for WireDirectoryWatchRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
Source§impl FromWire<WireDirectoryWatchRequest> for DirectoryWatchRequest
impl FromWire<WireDirectoryWatchRequest> for DirectoryWatchRequest
Source§const COPY_OPTIMIZATION: CopyOptimization<WireDirectoryWatchRequest, Self>
const COPY_OPTIMIZATION: CopyOptimization<WireDirectoryWatchRequest, Self>
Source§fn from_wire(wire: WireDirectoryWatchRequest) -> Self
fn from_wire(wire: WireDirectoryWatchRequest) -> Self
Converts the given
wire
to this type.Source§impl Wire for WireDirectoryWatchRequest
impl Wire for WireDirectoryWatchRequest
Source§type Decoded<'de> = WireDirectoryWatchRequest
type Decoded<'de> = WireDirectoryWatchRequest
The decoded 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 WireDirectoryWatchRequest
impl RefUnwindSafe for WireDirectoryWatchRequest
impl Send for WireDirectoryWatchRequest
impl Sync for WireDirectoryWatchRequest
impl Unpin for WireDirectoryWatchRequest
impl UnwindSafe for WireDirectoryWatchRequest
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