pub enum HorizontalAlignmentValue {
Left,
Right,
}Variants§
Trait Implementations§
Source§impl Clone for HorizontalAlignmentValue
impl Clone for HorizontalAlignmentValue
Source§fn clone(&self) -> HorizontalAlignmentValue
fn clone(&self) -> HorizontalAlignmentValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HorizontalAlignmentValue
Source§impl Debug for HorizontalAlignmentValue
impl Debug for HorizontalAlignmentValue
impl Eq for HorizontalAlignmentValue
Source§impl Hash for HorizontalAlignmentValue
impl Hash for HorizontalAlignmentValue
Source§impl PartialEq for HorizontalAlignmentValue
impl PartialEq for HorizontalAlignmentValue
impl StructuralPartialEq for HorizontalAlignmentValue
Auto Trait Implementations§
impl Freeze for HorizontalAlignmentValue
impl RefUnwindSafe for HorizontalAlignmentValue
impl Send for HorizontalAlignmentValue
impl Sync for HorizontalAlignmentValue
impl Unpin for HorizontalAlignmentValue
impl UnsafeUnpin for HorizontalAlignmentValue
impl UnwindSafe for HorizontalAlignmentValue
Blanket Implementations§
Source§impl<T> AxialBlockOf for T
impl<T> AxialBlockOf for T
fn filled_along_of<C, A, T>(length: usize, width: usize, filler: T) -> Self
fn join_along_of<C, A>(self, other: Self) -> Self
Source§impl<T> AxisAlignedOf for T
impl<T> AxisAlignedOf for T
fn axis_aligned_of<A>(&self) -> &Self::Outputwhere
Self: AxisAligned<A>,
A: Alignment,
Source§impl<T> AxisOrderedOf for T
impl<T> AxisOrderedOf for T
fn axis_ordered_of<A>(self) -> Self::Outputwhere
Self: AxisOrdered<A>,
A: Alignment,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more