#[repr(C)]pub struct ControllerIsStartedResponse {
pub is_started: bool,
}
Fields§
§is_started: bool
Trait Implementations§
Source§impl Debug for ControllerIsStartedResponse
impl Debug for ControllerIsStartedResponse
Source§impl Encodable for ControllerIsStartedResponse
impl Encodable for ControllerIsStartedResponse
Source§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§type Encoded = WireControllerIsStartedResponse
type Encoded = WireControllerIsStartedResponse
The wire type for the value.
Source§impl EncodableOption for Box<ControllerIsStartedResponse>
impl EncodableOption for Box<ControllerIsStartedResponse>
Source§type EncodedOption = WireBox<WireControllerIsStartedResponse>
type EncodedOption = WireBox<WireControllerIsStartedResponse>
The wire type for the optional value.
Source§impl<___E> Encode<___E> for ControllerIsStartedResponsewhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for ControllerIsStartedResponsewhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§impl<___E> EncodeOption<___E> for Box<ControllerIsStartedResponse>where
___E: Encoder + ?Sized,
ControllerIsStartedResponse: Encode<___E>,
impl<___E> EncodeOption<___E> for Box<ControllerIsStartedResponse>where
___E: Encoder + ?Sized,
ControllerIsStartedResponse: 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<WireControllerIsStartedResponse> for ControllerIsStartedResponse
impl TakeFrom<WireControllerIsStartedResponse> for ControllerIsStartedResponse
Source§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§fn take_from(from: &WireControllerIsStartedResponse) -> Self
fn take_from(from: &WireControllerIsStartedResponse) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.Auto Trait Implementations§
impl Freeze for ControllerIsStartedResponse
impl RefUnwindSafe for ControllerIsStartedResponse
impl Send for ControllerIsStartedResponse
impl Sync for ControllerIsStartedResponse
impl Unpin for ControllerIsStartedResponse
impl UnwindSafe for ControllerIsStartedResponse
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