#[repr(C)]pub struct DebugConnectTargetRequest {
pub target_id: u8,
pub server: ServerEnd<Device, Channel>,
}Expand description
The wire type corresponding to DebugConnectTargetRequest.
Fields§
§target_id: u8§server: ServerEnd<Device, Channel>Trait Implementations§
Source§impl Constrained for DebugConnectTargetRequest
impl Constrained for DebugConnectTargetRequest
Source§impl Debug for DebugConnectTargetRequest
impl Debug for DebugConnectTargetRequest
Source§impl<___D> Decode<___D> for DebugConnectTargetRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
impl<___D> Decode<___D> for DebugConnectTargetRequestwhere
___D: InternalHandleDecoder + ?Sized + HandleDecoder,
Source§impl<___E> Encode<DebugConnectTargetRequest, ___E> for DebugConnectTargetRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<DebugConnectTargetRequest, ___E> for DebugConnectTargetRequestwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<DebugConnectTargetRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<DebugConnectTargetRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E, T0, T1> Encode<DebugConnectTargetRequest, ___E> for DebugConnectTargetRequest<T0, T1>
impl<___E, T0, T1> Encode<DebugConnectTargetRequest, ___E> for DebugConnectTargetRequest<T0, T1>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<DebugConnectTargetRequest>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<DebugConnectTargetRequest>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl FromWire<DebugConnectTargetRequest> for DebugConnectTargetRequest
impl FromWire<DebugConnectTargetRequest> for DebugConnectTargetRequest
Source§fn from_wire(wire: DebugConnectTargetRequest) -> Self
fn from_wire(wire: DebugConnectTargetRequest) -> Self
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl IntoNatural for DebugConnectTargetRequest
impl IntoNatural for DebugConnectTargetRequest
Source§type Natural = DebugConnectTargetRequest
type Natural = DebugConnectTargetRequest
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for DebugConnectTargetRequest
impl Wire for DebugConnectTargetRequest
Source§type Narrowed<'de> = DebugConnectTargetRequest
type Narrowed<'de> = DebugConnectTargetRequest
The narrowed 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 DebugConnectTargetRequest
impl RefUnwindSafe for DebugConnectTargetRequest
impl Send for DebugConnectTargetRequest
impl Sync for DebugConnectTargetRequest
impl Unpin for DebugConnectTargetRequest
impl UnsafeUnpin for DebugConnectTargetRequest
impl UnwindSafe for DebugConnectTargetRequest
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
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]