pub struct NamedValue64 {
pub name: String,
pub value: Integer64Value,
}Expand description
Represents a single enum value
Fields§
§name: StringThe name of the value
value: Integer64ValueThe integer value
Trait Implementations§
Source§impl Clone for NamedValue64
impl Clone for NamedValue64
Source§fn clone(&self) -> NamedValue64
fn clone(&self) -> NamedValue64
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 moreAuto Trait Implementations§
impl Freeze for NamedValue64
impl RefUnwindSafe for NamedValue64
impl Send for NamedValue64
impl Sync for NamedValue64
impl Unpin for NamedValue64
impl UnwindSafe for NamedValue64
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