Struct sp_runtime::PerU16 [−][src]
Re-export top-level arithmetic stuff. A fixed point representation of a number in the range [0, 1].
Parts per 65535
Implementations
impl PerU16
[src]
Re-export top-level arithmetic stuff.
pub const fn from_perthousand(x: u16) -> PerU16
[src]
Converts a percent into Self
. Equal to x / 1000
.
This can be created at compile time.
impl PerU16
[src]
Re-export top-level arithmetic stuff.
pub const fn from_parts(parts: u16) -> PerU16
[src]
From an explicitly defined number of parts per maximum of the type.
pub const fn from_percent(x: u16) -> PerU16
[src]
Converts a percent into Self
. Equal to x / 100
.
This can be created at compile time.
pub const fn one() -> PerU16
[src]
See PerThing::one
pub fn is_one(&self) -> bool
[src]
See PerThing::is_one
.
pub const fn zero() -> PerU16
[src]
See PerThing::zero
.
pub fn is_zero(&self) -> bool
[src]
See PerThing::is_zero
.
pub const fn deconstruct(self) -> u16
[src]
pub fn square(self) -> PerU16
[src]
See PerThing::square
.
pub fn from_fraction(x: f64) -> PerU16
[src]
pub fn from_rational_approximation<N>(p: N, q: N) -> PerU16 where
N: Clone + Ord + From<u16> + TryInto<u16> + TryInto<u32> + Div<N, Output = N> + Rem<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + Ord + From<u16> + TryInto<u16> + TryInto<u32> + Div<N, Output = N> + Rem<N, Output = N> + Add<N, Output = N> + Unsigned,
pub fn mul_floor<N>(self, b: N) -> N where
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
See PerThing::mul_floor
.
pub fn mul_ceil<N>(self, b: N) -> N where
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
See PerThing::mul_ceil
.
pub fn saturating_reciprocal_mul<N>(self, b: N) -> N where
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
pub fn saturating_reciprocal_mul_floor<N>(self, b: N) -> N where
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
pub fn saturating_reciprocal_mul_ceil<N>(self, b: N) -> N where
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<u16> + UniqueSaturatedInto<u16> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
Trait Implementations
impl Bounded for PerU16
[src]
impl Clone for PerU16
[src]
impl CompactAs for PerU16
[src]
Implementation makes any compact encoding of PerThing::Inner
valid,
when decoding it will saturate up to PerThing::ACCURACY
.
type As = u16
A compact-encodable type that should be used as the encoding.
pub fn encode_as(&self) -> &<PerU16 as CompactAs>::As
[src]
pub fn decode_from(x: <PerU16 as CompactAs>::As) -> PerU16
[src]
impl Copy for PerU16
[src]
impl Debug for PerU16
[src]
impl Decode for PerU16
[src]
impl Default for PerU16
[src]
impl<'de> Deserialize<'de> for PerU16
[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<PerU16, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<PerU16, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Div<PerU16> for PerU16
[src]
type Output = PerU16
The resulting type after applying the /
operator.
pub fn div(self, rhs: PerU16) -> <PerU16 as Div<PerU16>>::Output
[src]
impl Encode for PerU16
[src]
pub fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output,
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output,
pub fn encode(&self) -> Vec<u8, Global>
[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
pub fn size_hint(&self) -> usize
[src]
impl EncodeLike<PerU16> for PerU16
[src]
impl Eq for PerU16
[src]
impl From<Compact<PerU16>> for PerU16
[src]
impl<N> Mul<N> for PerU16 where
N: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u16> + Add<N, Output = N> + UniqueSaturatedInto<u16> + Unsigned,
[src]
N: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u16> + Add<N, Output = N> + UniqueSaturatedInto<u16> + Unsigned,
Non-overflow multiplication.
This is tailored to be used with a balance type.
type Output = N
The resulting type after applying the *
operator.
pub fn mul(self, b: N) -> <PerU16 as Mul<N>>::Output
[src]
impl Ord for PerU16
[src]
pub fn cmp(&self, other: &PerU16) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<PerU16> for PerU16
[src]
impl PartialOrd<PerU16> for PerU16
[src]
pub fn partial_cmp(&self, other: &PerU16) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl PerThing for PerU16
[src]
type Inner = u16
The data type used to build this per-thingy.
type Upper = u32
A data type larger than Self::Inner
, used to avoid overflow in some computations.
It must be able to compute ACCURACY^2
. Read more
pub const ACCURACY: <PerU16 as PerThing>::Inner
[src]
pub fn deconstruct(self) -> <PerU16 as PerThing>::Inner
[src]
Consume self and return the number of parts per thing.
pub fn from_parts(parts: <PerU16 as PerThing>::Inner) -> PerU16
[src]
Build this type from a number of parts per thing.
pub fn from_fraction(x: f64) -> PerU16
[src]
NOTE: saturate to 0 or 1 if x is beyond [0, 1]
pub fn from_rational_approximation<N>(p: N, q: N) -> PerU16 where
N: Clone + Ord + From<<PerU16 as PerThing>::Inner> + TryInto<<PerU16 as PerThing>::Inner> + TryInto<<PerU16 as PerThing>::Upper> + Div<N, Output = N> + Rem<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + Ord + From<<PerU16 as PerThing>::Inner> + TryInto<<PerU16 as PerThing>::Inner> + TryInto<<PerU16 as PerThing>::Upper> + Div<N, Output = N> + Rem<N, Output = N> + Add<N, Output = N> + Unsigned,
pub fn zero() -> Self
[src]
pub fn is_zero(&self) -> bool
[src]
pub fn one() -> Self
[src]
pub fn is_one(&self) -> bool
[src]
pub fn from_percent(x: Self::Inner) -> Self
[src]
pub fn square(self) -> Self
[src]
pub fn mul_floor<N>(self, b: N) -> N where
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
pub fn mul_ceil<N>(self, b: N) -> N where
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
[src]
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned,
pub fn saturating_reciprocal_mul<N>(self, b: N) -> N where
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
pub fn saturating_reciprocal_mul_floor<N>(self, b: N) -> N where
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
pub fn saturating_reciprocal_mul_ceil<N>(self, b: N) -> N where
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
[src]
N: Clone + From<Self::Inner> + UniqueSaturatedInto<Self::Inner> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned,
impl Saturating for PerU16
[src]
pub fn saturating_add(self, rhs: PerU16) -> PerU16
[src]
Saturating addition. Compute self + rhs
, saturating at the numeric bounds instead of
overflowing. This operation is lossless if it does not saturate.
pub fn saturating_sub(self, rhs: PerU16) -> PerU16
[src]
Saturating subtraction. Compute self - rhs
, saturating at the numeric bounds instead of
overflowing. This operation is lossless if it does not saturate.
pub fn saturating_mul(self, rhs: PerU16) -> PerU16
[src]
Saturating multiply. Compute self * rhs
, saturating at the numeric bounds instead of
overflowing. This operation is lossy.
pub fn saturating_pow(self, exp: usize) -> PerU16
[src]
Saturating exponentiation. Computes self.pow(exp)
, saturating at the numeric
bounds instead of overflowing. This operation is lossy.
impl Serialize for PerU16
[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralEq for PerU16
[src]
impl StructuralPartialEq for PerU16
[src]
Auto Trait Implementations
impl RefUnwindSafe for PerU16
impl Send for PerU16
impl Sync for PerU16
impl Unpin for PerU16
impl UnwindSafe for PerU16
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CheckedConversion for T
[src]
fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> Clear for T where
T: PartialEq<T> + Eq + Default,
[src]
T: PartialEq<T> + Eq + Default,
impl<S> Codec for S where
S: Encode + Decode,
[src]
S: Encode + Decode,
impl<T> DecodeAll for T where
T: Decode,
[src]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode,
[src]
T: Decode,
pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()
[src]
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned,
[src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> From<T> for T
[src]
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,
impl<T> HasCompact for T where
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
Compact<T>: Clone,
Compact<T>: PartialEq<Compact<T>>,
Compact<T>: Eq,
Compact<T>: MaybeDebugSerde,
[src]
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
Compact<T>: Clone,
Compact<T>: PartialEq<Compact<T>>,
Compact<T>: Eq,
Compact<T>: MaybeDebugSerde,
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
pub fn from_ref(outer: &Outer) -> &T
[src]
Get a reference to the inner from the outer.
pub fn from_mut(outer: &mut Outer) -> &mut T
[src]
Get a mutable reference to the inner from the outer.
impl<T> KeyedVec for T where
T: Codec,
[src]
T: Codec,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
[src]
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
[src]
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
[src]
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> SaturatedConversion for T
[src]
pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]
S: TryFrom<T> + Bounded,
pub fn unique_saturated_from(t: T) -> S
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
T: Bounded,
S: TryInto<T>,
pub fn unique_saturated_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,