pub enum StringDirection {
End = 0,
StartLeftToRight = 1,
StartRightToLeft = 2,
}
Expand description
Valid parameter values to the function SDS
.
Variants§
End = 0
End of a directed string; re-establish the previous direction.
StartLeftToRight = 1
Start of a directed string, establish the direction left-to-right.
StartRightToLeft = 2
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 for StringDirection
impl PartialEq 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 ==
.impl Copy for StringDirection
impl Eq for StringDirection
impl StructuralEq for StringDirection
impl StructuralPartialEq for StringDirection
Auto Trait Implementations§
impl RefUnwindSafe for StringDirection
impl Send for StringDirection
impl Sync for StringDirection
impl Unpin for StringDirection
impl UnwindSafe for StringDirection
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