Struct font_types::F6Dot10

source ·
pub struct F6Dot10(/* private fields */);
Expand description

16-bit signed fixed point number with 10 bits of fraction.

Implementations§

source§

impl F6Dot10

source

pub const MIN: Self = _

Minimum value.

source

pub const MAX: Self = _

Maximum value.

source

pub const EPSILON: Self = _

This type’s smallest representable value

source

pub const ZERO: Self = _

Representation of 0.0.

source

pub const ONE: Self = _

Representation of 1.0.

source

pub const fn from_bits(bits: i16) -> Self

Creates a new fixed point value from the underlying bit representation.

source

pub const fn to_bits(self) -> i16

Returns the underlying bit representation of the value.

source

pub const fn round(self) -> Self

Returns the nearest integer value.

source

pub const fn abs(self) -> Self

Returns the absolute value of the number.

source

pub const fn floor(self) -> Self

Returns the largest integer less than or equal to the number.

source

pub const fn fract(self) -> Self

Returns the fractional part of the number.

source

pub fn wrapping_add(self, other: Self) -> Self

Wrapping addition.

source

pub const fn saturating_add(self, other: Self) -> Self

Saturating addition.

source

pub const fn wrapping_sub(self, other: Self) -> Self

Wrapping substitution.

source

pub const fn saturating_sub(self, other: Self) -> Self

Saturating substitution.

source

pub const fn to_be_bytes(self) -> [u8; 2]

The representation of this number as a big-endian byte array.

source§

impl F6Dot10

source

pub fn from_f32(x: f32) -> Self

Creates a fixed point value from af32.

This operation is lossy; the float will be rounded to the nearest representable value.

source

pub fn to_f32(self) -> f32

Returns the value as an f32.

This operation is lossless: all representable values can be round-tripped.

Trait Implementations§

source§

impl Add for F6Dot10

§

type Output = F6Dot10

The resulting type after applying the + operator.
source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
source§

impl AddAssign for F6Dot10

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl Clone for F6Dot10

source§

fn clone(&self) -> F6Dot10

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for F6Dot10

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for F6Dot10

source§

fn default() -> F6Dot10

Returns the “default value” for a type. Read more
source§

impl Display for F6Dot10

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for F6Dot10

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for F6Dot10

source§

fn cmp(&self, other: &F6Dot10) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for F6Dot10

source§

fn eq(&self, other: &F6Dot10) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for F6Dot10

source§

fn partial_cmp(&self, other: &F6Dot10) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Scalar for F6Dot10

§

type Raw = [u8; 2]

The raw byte representation of this type.
source§

fn to_raw(self) -> [u8; 2]

Encode this type as raw big-endian bytes
source§

fn from_raw(raw: [u8; 2]) -> Self

Create an instance of this type from raw big-endian bytes
source§

fn read(slice: &[u8]) -> Option<Self>

Attempt to read a scalar from a slice. Read more
source§

impl Sub for F6Dot10

§

type Output = F6Dot10

The resulting type after applying the - operator.
source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
source§

impl SubAssign for F6Dot10

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl Zeroable for F6Dot10

source§

fn zeroed() -> Self

source§

impl AnyBitPattern for F6Dot10

source§

impl Copy for F6Dot10

source§

impl Eq for F6Dot10

source§

impl NoUninit for F6Dot10

source§

impl StructuralPartialEq for F6Dot10

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> FixedSize for T
where T: Scalar,

source§

const RAW_BYTE_LEN: usize = const RAW_BYTE_LEN: usize = std::mem::size_of::<T::Raw>();

The raw size of this type, in bytes. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.