#[repr(C)]pub struct WireLoaderConfigRequest<'de> {
pub config: WireString<'de>,
}
Expand description
The wire type corresponding to LoaderConfigRequest
.
Fields§
§config: WireString<'de>
Trait Implementations§
Source§impl<'de> Debug for WireLoaderConfigRequest<'de>
impl<'de> Debug for WireLoaderConfigRequest<'de>
Source§impl<___D> Decode<___D> for WireLoaderConfigRequest<'static>where
___D: InternalHandleDecoder + ?Sized + Decoder,
impl<___D> Decode<___D> for WireLoaderConfigRequest<'static>where
___D: InternalHandleDecoder + ?Sized + Decoder,
Source§impl<'de> FromWire<WireLoaderConfigRequest<'de>> for LoaderConfigRequest
impl<'de> FromWire<WireLoaderConfigRequest<'de>> for LoaderConfigRequest
Source§fn from_wire(wire: WireLoaderConfigRequest<'de>) -> Self
fn from_wire(wire: WireLoaderConfigRequest<'de>) -> Self
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl<'de> FromWireRef<WireLoaderConfigRequest<'de>> for LoaderConfigRequest
impl<'de> FromWireRef<WireLoaderConfigRequest<'de>> for LoaderConfigRequest
Source§fn from_wire_ref(wire: &WireLoaderConfigRequest<'de>) -> Self
fn from_wire_ref(wire: &WireLoaderConfigRequest<'de>) -> Self
Converts the given
wire
reference to this type.Source§impl Wire for WireLoaderConfigRequest<'static>
impl Wire for WireLoaderConfigRequest<'static>
Source§type Decoded<'de> = WireLoaderConfigRequest<'de>
type Decoded<'de> = WireLoaderConfigRequest<'de>
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<'de> Freeze for WireLoaderConfigRequest<'de>
impl<'de> RefUnwindSafe for WireLoaderConfigRequest<'de>
impl<'de> Send for WireLoaderConfigRequest<'de>
impl<'de> Sync for WireLoaderConfigRequest<'de>
impl<'de> Unpin for WireLoaderConfigRequest<'de>
impl<'de> !UnwindSafe for WireLoaderConfigRequest<'de>
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