Struct zng_layout::unit::SideOffsets

source ·
pub struct SideOffsets {
    pub top: Length,
    pub right: Length,
    pub bottom: Length,
    pub left: Length,
}
Expand description

2D size offsets in Length units.

This unit defines spacing around all four sides of a box, a widget margin can be defined using a value of this type.

Fields§

§top: Length

Spacing above, in length units.

§right: Length

Spacing to the right, in length units.

§bottom: Length

Spacing bellow, in length units.

§left: Length

Spacing to the left ,in length units.

Implementations§

source§

impl SideOffsets

source

pub fn new<T: Into<Length>, R: Into<Length>, B: Into<Length>, L: Into<Length>>( top: T, right: R, bottom: B, left: L ) -> Self

New top, right, bottom left offsets. From any Length type.

source

pub fn new_vh<TB: Into<Length>, LR: Into<Length>>( top_bottom: TB, left_right: LR ) -> Self

Top-bottom and left-right equal. From any Length type.

source

pub fn new_all<T: Into<Length>>(all_sides: T) -> Self

All sides equal. From any Length type.

source

pub fn zero() -> Self

All sides zero.

source

pub fn all_eq(&self) -> bool

If all sides are equal.

source

pub fn dimensions_eq(&self) -> bool

If top and bottom are equal; and left and right are equal.

Trait Implementations§

source§

impl Add for SideOffsets

§

type Output = SideOffsets

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign for SideOffsets

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for SideOffsets

source§

fn clone(&self) -> SideOffsets

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 SideOffsets

source§

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

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

impl Default for SideOffsets

source§

fn default() -> SideOffsets

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

impl<'de> Deserialize<'de> for SideOffsets

source§

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

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

impl<'a, S: Into<FactorSideOffsets>> Div<S> for &'a SideOffsets

§

type Output = SideOffsets

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self::Output

Performs the / operation. Read more
source§

impl<S: Into<FactorSideOffsets>> Div<S> for SideOffsets

§

type Output = SideOffsets

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self

Performs the / operation. Read more
source§

impl<S: Into<FactorSideOffsets>> DivAssign<S> for SideOffsets

source§

fn div_assign(&mut self, rhs: S)

Performs the /= operation. Read more
source§

impl<T, R, B, L> From<(T, R, B, L)> for SideOffsets
where T: Into<Length>, R: Into<Length>, B: Into<Length>, L: Into<Length>,

source§

fn from((top, right, bottom, left): (T, R, B, L)) -> Self

(top, right, bottom, left)

source§

impl<TB, LR> From<(TB, LR)> for SideOffsets
where TB: Into<Length>, LR: Into<Length>,

source§

fn from((top_bottom, left_right): (TB, LR)) -> Self

(top-bottom, left-right)

source§

impl From<Factor> for SideOffsets

source§

fn from(norm: Factor) -> Self

All sides equal relative length.

source§

impl From<FactorPercent> for SideOffsets

source§

fn from(percent: FactorPercent) -> Self

All sides equal relative length.

source§

impl From<Length> for SideOffsets

source§

fn from(all: Length) -> Self

All sides equal.

source§

impl From<SideOffsets2D<Px, Px>> for SideOffsets

source§

fn from(offsets: PxSideOffsets) -> Self

From exact lengths.

source§

impl From<f32> for SideOffsets

source§

fn from(f: f32) -> Self

All sides equal exact length.

source§

impl From<i32> for SideOffsets

source§

fn from(i: i32) -> Self

All sides equal exact length.

source§

impl<T, R, B, L> IntoVar<SideOffsets> for (T, R, B, L)
where T: Into<Length> + Clone, R: Into<Length> + Clone, B: Into<Length> + Clone, L: Into<Length> + Clone,

source§

fn into_var(self) -> Self::Var

(top, right, bottom, left)

§

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<TB, LR> IntoVar<SideOffsets> for (TB, LR)
where TB: Into<Length> + Clone, LR: Into<Length> + Clone,

source§

fn into_var(self) -> Self::Var

(top-bottom, left-right)

§

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<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<SideOffsets> for FactorPercent

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<SideOffsets> for Length

source§

fn into_var(self) -> Self::Var

All sides equal.

§

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<SideOffsets> for PxSideOffsets

source§

fn into_var(self) -> Self::Var

From exact lengths.

§

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<SideOffsets> for f32

source§

fn into_var(self) -> Self::Var

All sides equal exact 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<SideOffsets> for i32

source§

fn into_var(self) -> Self::Var

All sides equal exact 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 Layout2d for SideOffsets

§

type Px = SideOffsets2D<Px, Px>

Pixel type.
source§

fn layout_dft(&self, default: Self::Px) -> Self::Px

Compute the pixel value in the current LAYOUT context with default.
source§

fn affect_mask(&self) -> LayoutMask

Compute a LayoutMask that flags all contextual values that affect the result of layout.
source§

fn layout(&self) -> Self::Px

Compute the pixel value in the current LAYOUT context.
source§

impl<'a, S: Into<FactorSideOffsets>> Mul<S> for &'a SideOffsets

§

type Output = SideOffsets

The resulting type after applying the * operator.
source§

fn mul(self, rhs: S) -> Self::Output

Performs the * operation. Read more
source§

impl<S: Into<FactorSideOffsets>> Mul<S> for SideOffsets

§

type Output = SideOffsets

The resulting type after applying the * operator.
source§

fn mul(self, rhs: S) -> Self

Performs the * operation. Read more
source§

impl<S: Into<FactorSideOffsets>> MulAssign<S> for SideOffsets

source§

fn mul_assign(&mut self, rhs: S)

Performs the *= operation. Read more
source§

impl PartialEq for SideOffsets

source§

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

source§

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

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

impl Sub for SideOffsets

§

type Output = SideOffsets

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign for SideOffsets

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl Transitionable for SideOffsets

source§

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

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

impl IntoValue<SideOffsets> for Factor

source§

impl IntoValue<SideOffsets> for FactorPercent

source§

impl IntoValue<SideOffsets> for Length

source§

impl IntoValue<SideOffsets> for PxSideOffsets

source§

impl IntoValue<SideOffsets> for f32

source§

impl IntoValue<SideOffsets> for i32

source§

impl StructuralPartialEq for SideOffsets

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> 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
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, 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
source§

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

source§

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

source§

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