#[repr(C)]pub enum KeyConversionMode {
ConvertToString = 0,
KeepNumbers = 1,
NoNumbers = 2,
}
Variants§
ConvertToString = 0
kConvertToString will convert integer indices to strings.
KeepNumbers = 1
kKeepNumbers will return numbers for integer indices.
NoNumbers = 2
Trait Implementations§
Source§impl Clone for KeyConversionMode
impl Clone for KeyConversionMode
Source§fn clone(&self) -> KeyConversionMode
fn clone(&self) -> KeyConversionMode
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 Debug for KeyConversionMode
impl Debug for KeyConversionMode
impl Copy for KeyConversionMode
Auto Trait Implementations§
impl Freeze for KeyConversionMode
impl RefUnwindSafe for KeyConversionMode
impl Send for KeyConversionMode
impl Sync for KeyConversionMode
impl Unpin for KeyConversionMode
impl UnwindSafe for KeyConversionMode
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