Struct zng_layout::unit::Factor

source ·
#[repr(transparent)]
pub struct Factor(pub f32);
Expand description

Normalized multiplication factor.

Values of this type are normalized to generally be in between 0.0 and 1.0 to indicate a fraction of a unit. However, values are not clamped to this range, Factor(2.0) is a valid value and so are negative values.

§Equality

Equality is determined to within 0.00001 epsilon.

Tuple Fields§

§0: f32

Implementations§

source§

impl Factor

source

pub fn clamp_range(self) -> Factor

Clamp factor to [0.0..=1.0] range.

source

pub fn max(self, other: impl Into<Factor>) -> Factor

Returns the maximum of two factors.

source

pub fn min(self, other: impl Into<Factor>) -> Factor

Returns the minimum of two factors.

source

pub fn clamp(self, min: impl Into<Factor>, max: impl Into<Factor>) -> Factor

Returns self if min <= self <= max, returns min if self < min or returns max if self > max.

source

pub fn abs(self) -> Factor

Computes the absolute value of self.

source

pub fn flip(self) -> Factor

Flip factor, around 0.5,

Returns 1.0 - self.

source

pub fn pct(self) -> FactorPercent

Factor as percentage.

Trait Implementations§

source§

impl Add for Factor

§

type Output = Factor

The resulting type after applying the + operator.
source§

fn add(self, rhs: Factor) -> <Factor as Add>::Output

Performs the + operation. Read more
source§

impl AddAssign for Factor

source§

fn add_assign(&mut self, rhs: Factor)

Performs the += operation. Read more
source§

impl Clone for Factor

source§

fn clone(&self) -> Factor

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 Factor

source§

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

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

impl<'de> Deserialize<'de> for Factor

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Factor, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Factor

source§

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

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

impl Div<Factor> for Dip

§

type Output = Dip

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Dip

Performs the / operation. Read more
source§

impl Div<Factor> for Factor2d

§

type Output = Factor2d

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Factor2d

Performs the / operation. Read more
source§

impl Div<Factor> for FactorPercent

§

type Output = FactorPercent

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> FactorPercent

Performs the / operation. Read more
source§

impl Div<Factor> for Point2D<Dip, Dip>

§

type Output = Point2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Point2D<Dip, Dip>

Performs the / operation. Read more
source§

impl Div<Factor> for Point2D<Px, Px>

§

type Output = Point2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Point2D<Px, Px>

Performs the / operation. Read more
source§

impl Div<Factor> for Point2D<f32, Px>

§

type Output = Point2D<f32, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Point2D<f32, Px>

Performs the / operation. Read more
source§

impl Div<Factor> for Px

§

type Output = Px

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Px

Performs the / operation. Read more
source§

impl Div<Factor> for Rect<Dip, Dip>

§

type Output = Rect<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Rect<Dip, Dip>

Performs the / operation. Read more
source§

impl Div<Factor> for Rect<Px, Px>

§

type Output = Rect<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Rect<Px, Px>

Performs the / operation. Read more
source§

impl Div<Factor> for Size2D<Dip, Dip>

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Size2D<Dip, Dip>

Performs the / operation. Read more
source§

impl Div<Factor> for Size2D<Px, Px>

§

type Output = Size2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Size2D<Px, Px>

Performs the / operation. Read more
source§

impl Div<Factor> for Size2D<f32, Px>

§

type Output = Size2D<f32, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Size2D<f32, Px>

Performs the / operation. Read more
source§

impl Div<Factor> for Vector2D<Dip, Dip>

§

type Output = Vector2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Vector2D<Dip, Dip>

Performs the / operation. Read more
source§

impl Div<Factor> for Vector2D<Px, Px>

§

type Output = Vector2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Vector2D<Px, Px>

Performs the / operation. Read more
source§

impl Div for Factor

§

type Output = Factor

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> <Factor as Div>::Output

Performs the / operation. Read more
source§

impl DivAssign<Factor> for Dip

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Factor2d

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for FactorPercent

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Point2D<Dip, Dip>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Point2D<Px, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Point2D<f32, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Px

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Rect<Dip, Dip>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Rect<Px, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Size2D<Dip, Dip>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Size2D<Px, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Size2D<f32, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Vector2D<Dip, Dip>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor> for Vector2D<Px, Px>

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign for Factor

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl From<Factor> for Align

source§

fn from(xy: Factor) -> Self

Converts to this type from the input type.
source§

impl From<Factor> for Factor2d

source§

fn from(xy: Factor) -> Self

Converts to this type from the input type.
source§

impl From<Factor> for FactorPercent

source§

fn from(value: Factor) -> FactorPercent

Converts to this type from the input type.
source§

impl From<Factor> for FactorSideOffsets

source§

fn from(all: Factor) -> Self

All sides equal.

source§

impl From<Factor> for GridSpacing

source§

fn from(norm: Factor) -> Self

Column and row equal relative length.

source§

impl From<Factor> for Length

source§

fn from(norm: Factor) -> Self

Conversion to Length::Factor

source§

impl From<Factor> for Point

source§

fn from(norm: Factor) -> Self

Splat relative length.

source§

impl From<Factor> for RgbaComponent

Color channel value is in the [0..=1] range.

source§

fn from(f: Factor) -> RgbaComponent

Converts to this type from the input type.
source§

impl From<Factor> for SideOffsets

source§

fn from(norm: Factor) -> Self

All sides equal relative length.

source§

impl From<Factor> for Size

source§

fn from(norm: Factor) -> Self

Splat relative length.

source§

impl From<Factor> for Vector

source§

fn from(norm: Factor) -> Self

Conversion to Length::Factor then to vector.

source§

impl From<FactorPercent> for Factor

source§

fn from(value: FactorPercent) -> Factor

Converts to this type from the input type.
source§

impl From<bool> for Factor

source§

fn from(value: bool) -> Factor

Converts to this type from the input type.
source§

impl From<f32> for Factor

source§

fn from(value: f32) -> Factor

Converts to this type from the input type.
source§

impl Hash for Factor

source§

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

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 IntoVar<Align> for Factor

§

type Var = LocalVar<Align>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<EasingTime> for Factor

§

type Var = LocalVar<EasingTime>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <Factor as IntoVar<EasingTime>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Factor> for FactorPercent

§

type Var = LocalVar<Factor>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <FactorPercent as IntoVar<Factor>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Factor2d> for Factor

§

type Var = LocalVar<Factor2d>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<FactorPercent> for Factor

§

type Var = LocalVar<FactorPercent>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <Factor as IntoVar<FactorPercent>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<FactorSideOffsets> for Factor

source§

fn into_var(self) -> Self::Var

All sides equal.

§

type Var = LocalVar<FactorSideOffsets>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GridSpacing> for Factor

source§

fn into_var(self) -> Self::Var

Column and row equal relative length.

§

type Var = LocalVar<GridSpacing>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Length> for Factor

source§

fn into_var(self) -> Self::Var

Conversion to Length::Factor

§

type Var = LocalVar<Length>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Point> for Factor

source§

fn into_var(self) -> Self::Var

Splat relative length.

§

type Var = LocalVar<Point>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<SideOffsets> for Factor

source§

fn into_var(self) -> Self::Var

All sides equal relative length.

§

type Var = LocalVar<SideOffsets>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Factor

source§

fn into_var(self) -> Self::Var

Splat relative length.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Vector> for Factor

source§

fn into_var(self) -> Self::Var

Conversion to Length::Factor then to vector.

§

type Var = LocalVar<Vector>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl Mul<Factor> for Dip

§

type Output = Dip

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Dip

Performs the * operation. Read more
source§

impl Mul<Factor> for Factor2d

§

type Output = Factor2d

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Factor2d

Performs the * operation. Read more
source§

impl Mul<Factor> for FactorPercent

§

type Output = FactorPercent

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> FactorPercent

Performs the * operation. Read more
source§

impl Mul<Factor> for Point2D<Dip, Dip>

§

type Output = Point2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Point2D<Dip, Dip>

Performs the * operation. Read more
source§

impl Mul<Factor> for Point2D<Px, Px>

§

type Output = Point2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Point2D<Px, Px>

Performs the * operation. Read more
source§

impl Mul<Factor> for Point2D<f32, Px>

§

type Output = Point2D<f32, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Point2D<f32, Px>

Performs the * operation. Read more
source§

impl Mul<Factor> for Px

§

type Output = Px

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Px

Performs the * operation. Read more
source§

impl Mul<Factor> for Rect<Dip, Dip>

§

type Output = Rect<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Rect<Dip, Dip>

Performs the * operation. Read more
source§

impl Mul<Factor> for Rect<Px, Px>

§

type Output = Rect<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Rect<Px, Px>

Performs the * operation. Read more
source§

impl Mul<Factor> for Size2D<Dip, Dip>

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Size2D<Dip, Dip>

Performs the * operation. Read more
source§

impl Mul<Factor> for Size2D<Px, Px>

§

type Output = Size2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Size2D<Px, Px>

Performs the * operation. Read more
source§

impl Mul<Factor> for Size2D<f32, Px>

§

type Output = Size2D<f32, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Size2D<f32, Px>

Performs the * operation. Read more
source§

impl Mul<Factor> for Vector2D<Dip, Dip>

§

type Output = Vector2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Vector2D<Dip, Dip>

Performs the * operation. Read more
source§

impl Mul<Factor> for Vector2D<Px, Px>

§

type Output = Vector2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Vector2D<Px, Px>

Performs the * operation. Read more
source§

impl Mul for Factor

§

type Output = Factor

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> <Factor as Mul>::Output

Performs the * operation. Read more
source§

impl MulAssign<Factor> for Dip

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Factor2d

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for FactorPercent

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Point2D<Dip, Dip>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Point2D<Px, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Point2D<f32, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Px

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Rect<Dip, Dip>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Rect<Px, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Size2D<Dip, Dip>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Size2D<Px, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Size2D<f32, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Vector2D<Dip, Dip>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor> for Vector2D<Px, Px>

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign for Factor

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl Neg for Factor

§

type Output = Factor

The resulting type after applying the - operator.
source§

fn neg(self) -> <Factor as Neg>::Output

Performs the unary - operation. Read more
source§

impl PartialEq for Factor

source§

fn eq(&self, other: &Factor) -> 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 Factor

source§

fn partial_cmp(&self, other: &Factor) -> 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 Serialize for Factor

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub for Factor

§

type Output = Factor

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Factor) -> <Factor as Sub>::Output

Performs the - operation. Read more
source§

impl SubAssign for Factor

source§

fn sub_assign(&mut self, rhs: Factor)

Performs the -= operation. Read more
source§

impl Transitionable for Factor

source§

fn lerp(self, to: &Factor, step: Factor) -> Factor

Sample the linear interpolation from self -> to by step.
source§

impl Zeroable for Factor

§

fn zeroed() -> Self

source§

impl Copy for Factor

source§

impl IntoValue<Align> for Factor

source§

impl IntoValue<EasingTime> for Factor

source§

impl IntoValue<Factor> for FactorPercent

source§

impl IntoValue<Factor2d> for Factor

source§

impl IntoValue<FactorPercent> for Factor

source§

impl IntoValue<FactorSideOffsets> for Factor

source§

impl IntoValue<GridSpacing> for Factor

source§

impl IntoValue<Length> for Factor

source§

impl IntoValue<Point> for Factor

source§

impl IntoValue<SideOffsets> for Factor

source§

impl IntoValue<Size> for Factor

source§

impl IntoValue<Vector> for Factor

source§

impl Pod for Factor

Auto Trait Implementations§

§

impl Freeze for Factor

§

impl RefUnwindSafe for Factor

§

impl Send for Factor

§

impl Sync for Factor

§

impl Unpin for Factor

§

impl UnwindSafe for Factor

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> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
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
§

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.
§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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> ToTxt for T
where T: ToString,

source§

fn to_txt(&self) -> Txt

Converts the given value to an owned Txt. 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

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

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> IntoValue<T> for T
where T: VarValue,

§

impl<T> NoUninit for T
where T: Pod,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,