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.