pub enum SegmentPadding {
Center(usize),
Left(usize),
None,
Right(usize),
}
Variants§
Trait Implementations§
Source§impl Clone for SegmentPadding
impl Clone for SegmentPadding
Source§fn clone(&self) -> SegmentPadding
fn clone(&self) -> SegmentPadding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SegmentPadding
impl Debug for SegmentPadding
Source§impl PartialEq for SegmentPadding
impl PartialEq for SegmentPadding
impl Copy for SegmentPadding
impl StructuralPartialEq for SegmentPadding
Auto Trait Implementations§
impl Freeze for SegmentPadding
impl RefUnwindSafe for SegmentPadding
impl Send for SegmentPadding
impl Sync for SegmentPadding
impl Unpin for SegmentPadding
impl UnwindSafe for SegmentPadding
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