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