#[repr(C)]pub struct WireCalculatorMultiplyResponse {
pub product: WireF64,
}
Expand description
The wire type corresponding to CalculatorMultiplyResponse
.
Fields§
§product: WireF64
Trait Implementations§
Source§impl Clone for WireCalculatorMultiplyResponse
impl Clone for WireCalculatorMultiplyResponse
Source§fn clone(&self) -> WireCalculatorMultiplyResponse
fn clone(&self) -> WireCalculatorMultiplyResponse
Returns a duplicate 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<___D> Decode<___D> for WireCalculatorMultiplyResponsewhere
___D: InternalHandleDecoder + ?Sized,
impl<___D> Decode<___D> for WireCalculatorMultiplyResponsewhere
___D: InternalHandleDecoder + ?Sized,
Source§impl FromWire<WireCalculatorMultiplyResponse> for CalculatorMultiplyResponse
impl FromWire<WireCalculatorMultiplyResponse> for CalculatorMultiplyResponse
Source§const COPY_OPTIMIZATION: CopyOptimization<WireCalculatorMultiplyResponse, Self>
const COPY_OPTIMIZATION: CopyOptimization<WireCalculatorMultiplyResponse, Self>
Source§fn from_wire(wire: WireCalculatorMultiplyResponse) -> Self
fn from_wire(wire: WireCalculatorMultiplyResponse) -> Self
Converts the given
wire
to this type.Source§impl FromWireRef<WireCalculatorMultiplyResponse> for CalculatorMultiplyResponse
impl FromWireRef<WireCalculatorMultiplyResponse> for CalculatorMultiplyResponse
Source§fn from_wire_ref(wire: &WireCalculatorMultiplyResponse) -> Self
fn from_wire_ref(wire: &WireCalculatorMultiplyResponse) -> Self
Converts the given
wire
reference to this type.Source§impl Wire for WireCalculatorMultiplyResponse
impl Wire for WireCalculatorMultiplyResponse
Source§type Decoded<'de> = WireCalculatorMultiplyResponse
type Decoded<'de> = WireCalculatorMultiplyResponse
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 WireCalculatorMultiplyResponse
impl RefUnwindSafe for WireCalculatorMultiplyResponse
impl Send for WireCalculatorMultiplyResponse
impl Sync for WireCalculatorMultiplyResponse
impl Unpin for WireCalculatorMultiplyResponse
impl UnwindSafe for WireCalculatorMultiplyResponse
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