Struct Thickness

Source
pub struct Thickness { /* private fields */ }

Implementations§

Source§

impl Thickness

Source

pub const fn new(l: i32, t: i32, r: i32, b: i32) -> Self

Source

pub const unsafe fn new_unchecked(l: i32, t: i32, r: i32, b: i32) -> Self

§Safety

All passed parameters should be in the -(2¹⁶ - 1) ..= (2¹⁶ - 1) range.

Source

pub const fn all(a: i32) -> Thickness

Source

pub fn l(self) -> i32

Source

pub fn t(self) -> i32

Source

pub fn r(self) -> i32

Source

pub fn b(self) -> i32

Source

pub fn align( inner: Vector, outer: Vector, h_align: HAlign, v_align: VAlign, ) -> Thickness

Source

pub fn shrink_rect(self, rect: Rect) -> Rect

Source

pub fn expand_rect(self, rect: Rect) -> Rect

Source

pub fn shrink_optional_rect_size( self, rect_width: Option<i16>, rect_height: Option<i16>, ) -> (Option<i16>, Option<i16>)

Source

pub fn expand_optional_rect_size( self, rect_width: Option<i16>, rect_height: Option<i16>, ) -> (Option<i16>, Option<i16>)

Source

pub fn shrink_rect_size(self, rect_size: Vector) -> Vector

Source

pub fn expand_rect_size(self, rect_size: Vector) -> Vector

Source

pub fn shrink_band_h(self, band_h: i16) -> i16

Source

pub fn expand_band_h(self, band_h: i16) -> i16

Source

pub fn shrink_band_w(self, band_w: i16) -> i16

Source

pub fn expand_band_w(self, band_w: i16) -> i16

Trait Implementations§

Source§

impl Add for Thickness

Source§

type Output = Thickness

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign for Thickness

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl Clone for Thickness

Source§

fn clone(&self) -> Thickness

Returns a duplicate 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 Thickness

Source§

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

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

impl Default for Thickness

Source§

fn default() -> Thickness

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

impl Hash for Thickness

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 Index<Side> for Thickness

Source§

type Output = i32

The returned type after indexing.
Source§

fn index(&self, index: Side) -> &i32

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<Side> for Thickness

Source§

fn index_mut(&mut self, index: Side) -> &mut i32

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl Neg for Thickness

Source§

type Output = Thickness

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl PartialEq for Thickness

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Sub for Thickness

Source§

type Output = Thickness

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign for Thickness

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl Copy for Thickness

Source§

impl Eq for Thickness

Source§

impl StructuralPartialEq for Thickness

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.