pub enum ReversedString {
End = 0,
Start = 1,
}
Expand description
Valid parameter values to the function SRS
.
Variants§
End = 0
End of a reversed string; re-establish the previous direction.
Start = 1
Beginning of a reversed string; reverse the direction
Trait Implementations§
source§impl Clone for ReversedString
impl Clone for ReversedString
source§fn clone(&self) -> ReversedString
fn clone(&self) -> ReversedString
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 ReversedString
impl Default for ReversedString
source§fn default() -> ReversedString
fn default() -> ReversedString
Returns the “default value” for a type. Read more
source§impl PartialEq for ReversedString
impl PartialEq for ReversedString
source§fn eq(&self, other: &ReversedString) -> bool
fn eq(&self, other: &ReversedString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ReversedString
impl Eq for ReversedString
impl StructuralEq for ReversedString
impl StructuralPartialEq for ReversedString
Auto Trait Implementations§
impl RefUnwindSafe for ReversedString
impl Send for ReversedString
impl Sync for ReversedString
impl Unpin for ReversedString
impl UnwindSafe for ReversedString
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