pub struct IntegerRepresentationItem {
pub name: String,
pub the_value: i64,
}Fields§
§name: String§the_value: i64Trait Implementations§
Source§impl Clone for IntegerRepresentationItem
impl Clone for IntegerRepresentationItem
Source§fn clone(&self) -> IntegerRepresentationItem
fn clone(&self) -> IntegerRepresentationItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegerRepresentationItem
impl Debug for IntegerRepresentationItem
Source§impl PartialEq for IntegerRepresentationItem
impl PartialEq for IntegerRepresentationItem
Source§fn eq(&self, other: &IntegerRepresentationItem) -> bool
fn eq(&self, other: &IntegerRepresentationItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntegerRepresentationItem
Auto Trait Implementations§
impl Freeze for IntegerRepresentationItem
impl RefUnwindSafe for IntegerRepresentationItem
impl Send for IntegerRepresentationItem
impl Sync for IntegerRepresentationItem
impl Unpin for IntegerRepresentationItem
impl UnsafeUnpin for IntegerRepresentationItem
impl UnwindSafe for IntegerRepresentationItem
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