pub enum PadWidth<'a> {
Same((i32, i32)),
Widths(&'a [(i32, i32)]),
}
Expand description
Number of padding values to add to the edges of each axis.
Variants§
Same((i32, i32))
(before, after) values for all axes.
Widths(&'a [(i32, i32)])
List of (before, after) values for each axis.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PadWidth<'a>
impl<'a> RefUnwindSafe for PadWidth<'a>
impl<'a> Send for PadWidth<'a>
impl<'a> Sync for PadWidth<'a>
impl<'a> Unpin for PadWidth<'a>
impl<'a> UnwindSafe for PadWidth<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> IntoOption<T> for T
impl<T> IntoOption<T> for T
Source§fn into_option(self) -> Option<T>
fn into_option(self) -> Option<T>
Convert into an
Option
.