pub enum Wrap {
None(WrapNone),
Square(WrapSquare),
Tight(WrapTight),
Through(WrapThrough),
TopAndBottom(WrapTopAndBottom),
}
Variants§
None(WrapNone)
Square(WrapSquare)
Tight(WrapTight)
Through(WrapThrough)
TopAndBottom(WrapTopAndBottom)
Trait Implementations§
Source§impl From<WrapSquare> for Wrap
impl From<WrapSquare> for Wrap
Source§fn from(original: WrapSquare) -> Wrap
fn from(original: WrapSquare) -> Wrap
Converts to this type from the input type.
Source§impl From<WrapThrough> for Wrap
impl From<WrapThrough> for Wrap
Source§fn from(original: WrapThrough) -> Wrap
fn from(original: WrapThrough) -> Wrap
Converts to this type from the input type.
Source§impl From<WrapTopAndBottom> for Wrap
impl From<WrapTopAndBottom> for Wrap
Source§fn from(original: WrapTopAndBottom) -> Wrap
fn from(original: WrapTopAndBottom) -> Wrap
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Wrap
impl RefUnwindSafe for Wrap
impl Send for Wrap
impl Sync for Wrap
impl Unpin for Wrap
impl UnwindSafe for Wrap
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