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
sourceimpl From<WrapSquare> for Wrap
impl From<WrapSquare> for Wrap
sourcefn from(original: WrapSquare) -> Wrap
fn from(original: WrapSquare) -> Wrap
Converts to this type from the input type.
sourceimpl From<WrapThrough> for Wrap
impl From<WrapThrough> for Wrap
sourcefn from(original: WrapThrough) -> Wrap
fn from(original: WrapThrough) -> Wrap
Converts to this type from the input type.
sourceimpl From<WrapTopAndBottom> for Wrap
impl From<WrapTopAndBottom> for Wrap
sourcefn from(original: WrapTopAndBottom) -> Wrap
fn from(original: WrapTopAndBottom) -> Wrap
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for Wrap
impl Send for Wrap
impl Sync for Wrap
impl Unpin for Wrap
impl UnwindSafe for Wrap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more