#[repr(C)]pub struct CalculatorAddResponse {
pub sum: i32,
}
Fields§
§sum: i32
Trait Implementations§
Source§impl Clone for CalculatorAddResponse
impl Clone for CalculatorAddResponse
Source§fn clone(&self) -> CalculatorAddResponse
fn clone(&self) -> CalculatorAddResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CalculatorAddResponse
impl Debug for CalculatorAddResponse
Source§impl Encodable for CalculatorAddResponse
impl Encodable for CalculatorAddResponse
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 = WireCalculatorAddResponse
type Encoded = WireCalculatorAddResponse
The wire type for the value.
Source§impl EncodableOption for Box<CalculatorAddResponse>
impl EncodableOption for Box<CalculatorAddResponse>
Source§type EncodedOption = WireBox<WireCalculatorAddResponse>
type EncodedOption = WireBox<WireCalculatorAddResponse>
The wire type for the optional value.
Source§impl<___E> Encode<___E> for CalculatorAddResponsewhere
___E: InternalHandleEncoder + ?Sized,
impl<___E> Encode<___E> for CalculatorAddResponsewhere
___E: InternalHandleEncoder + ?Sized,
Source§impl<___E> EncodeOption<___E> for Box<CalculatorAddResponse>
impl<___E> EncodeOption<___E> for Box<CalculatorAddResponse>
Source§fn encode_option(
this: Option<&mut Self>,
encoder: &mut ___E,
slot: Slot<'_, Self::EncodedOption>,
) -> Result<(), EncodeError>
fn encode_option( this: Option<&mut Self>, encoder: &mut ___E, slot: Slot<'_, Self::EncodedOption>, ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and slot.
Source§impl TakeFrom<WireCalculatorAddResponse> for CalculatorAddResponse
impl TakeFrom<WireCalculatorAddResponse> for CalculatorAddResponse
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: &WireCalculatorAddResponse) -> Self
fn take_from(from: &WireCalculatorAddResponse) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.Auto Trait Implementations§
impl Freeze for CalculatorAddResponse
impl RefUnwindSafe for CalculatorAddResponse
impl Send for CalculatorAddResponse
impl Sync for CalculatorAddResponse
impl Unpin for CalculatorAddResponse
impl UnwindSafe for CalculatorAddResponse
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