pub enum ReversedString {
End,
Start,
}
Expand description
Valid parameter values to the function SRS
.
Variants§
End
End of a reversed string; re-establish the previous direction.
Start
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<ReversedString> for ReversedString
impl PartialEq<ReversedString> 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 ==
.