pub enum StringDirection {
End,
StartLeftToRight,
StartRightToLeft,
}
Expand description
Valid parameter values to the function SDS
.
Variants§
End
End of a directed string; re-establish the previous direction.
StartLeftToRight
Start of a directed string, establish the direction left-to-right.
StartRightToLeft
Start of a directed string, establish the direction right-to-left.
Trait Implementations§
source§impl Clone for StringDirection
impl Clone for StringDirection
source§fn clone(&self) -> StringDirection
fn clone(&self) -> StringDirection
Returns a copy 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 Default for StringDirection
impl Default for StringDirection
source§fn default() -> StringDirection
fn default() -> StringDirection
Returns the “default value” for a type. Read more
source§impl PartialEq<StringDirection> for StringDirection
impl PartialEq<StringDirection> for StringDirection
source§fn eq(&self, other: &StringDirection) -> bool
fn eq(&self, other: &StringDirection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.