pub enum PresentationDirection {
HorizontalLinesTopToBottomLeftToRight = 0,
VerticalLinesRightToLeftTopToBottom = 1,
VerticalLinesLeftToRightTopToBottom = 2,
HorizontalLinesTopToBottomRightToLeft = 3,
VerticalLinesLeftToRightBottomToTop = 4,
HorizontalLinesBottomToTopRightToLeft = 5,
HorizontalLinesBottomToTopLefToRight = 6,
VerticalLinesRightToLeftBottomToTop = 7,
}Expand description
Valid parameter values to the function SPD.
Variants§
HorizontalLinesTopToBottomLeftToRight = 0
Horizontal line orientation, top-to-bottom line progression, left-to-right character path.
VerticalLinesRightToLeftTopToBottom = 1
Vertical line orientation, right-to-left line progression, top-to-bottom character path.
VerticalLinesLeftToRightTopToBottom = 2
Vertical line orientation, left-to-right line progression, top-to-bottom character path.
HorizontalLinesTopToBottomRightToLeft = 3
Horizontal line orientation, top-to-bottom line progression, right-to-left character path.
VerticalLinesLeftToRightBottomToTop = 4
Vertical line orientation, left-to-right line progression, bottom-to-top character path.
HorizontalLinesBottomToTopRightToLeft = 5
Horizontal line orientation, bottom-to-top line progression, right-to-left character path.
HorizontalLinesBottomToTopLefToRight = 6
Horizontal line orientation, bottom-to-top line progression, left-to-right character path.
VerticalLinesRightToLeftBottomToTop = 7
Vertical line orientation, right to left line progression, bottom-to-top character path.
Trait Implementations§
Source§impl Clone for PresentationDirection
impl Clone for PresentationDirection
Source§fn clone(&self) -> PresentationDirection
fn clone(&self) -> PresentationDirection
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for PresentationDirection
Source§impl Debug for PresentationDirection
impl Debug for PresentationDirection
Source§impl Default for PresentationDirection
impl Default for PresentationDirection
Source§fn default() -> PresentationDirection
fn default() -> PresentationDirection
impl Eq for PresentationDirection
Source§impl FromStr for PresentationDirection
impl FromStr for PresentationDirection
Source§impl PartialEq for PresentationDirection
impl PartialEq for PresentationDirection
Source§fn eq(&self, other: &PresentationDirection) -> bool
fn eq(&self, other: &PresentationDirection) -> bool
self and other values to be equal, and is used by ==.