pub struct StringIntegerPair {
pub key: String,
pub value: i64,
}Expand description
String-integer entry for enumeration maps.
Fields§
§key: StringString key
value: i64Integer value
Implementations§
Trait Implementations§
Source§impl Clone for StringIntegerPair
impl Clone for StringIntegerPair
Source§fn clone(&self) -> StringIntegerPair
fn clone(&self) -> StringIntegerPair
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 StringIntegerPair
impl Debug for StringIntegerPair
Source§impl PartialEq for StringIntegerPair
impl PartialEq for StringIntegerPair
impl Eq for StringIntegerPair
impl StructuralPartialEq for StringIntegerPair
Auto Trait Implementations§
impl Freeze for StringIntegerPair
impl RefUnwindSafe for StringIntegerPair
impl Send for StringIntegerPair
impl Sync for StringIntegerPair
impl Unpin for StringIntegerPair
impl UnsafeUnpin for StringIntegerPair
impl UnwindSafe for StringIntegerPair
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