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