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 duplicate 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 Debug for ReversedString
impl Debug for ReversedString
Source§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 FromStr for ReversedString
impl FromStr for ReversedString
Source§impl PartialEq for ReversedString
impl PartialEq for ReversedString
impl Copy for ReversedString
impl Eq for ReversedString
impl StructuralPartialEq for ReversedString
Auto Trait Implementations§
impl Freeze for ReversedString
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