pub struct ValueGroup {
pub name: String,
pub caption: String,
pub values: Vec<Value>,
}
Expand description
A group of values.
Fields§
§name: String
§caption: String
§values: Vec<Value>
Trait Implementations§
Source§impl Clone for ValueGroup
impl Clone for ValueGroup
Source§fn clone(&self) -> ValueGroup
fn clone(&self) -> ValueGroup
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 ValueGroup
impl Debug for ValueGroup
Source§impl Hash for ValueGroup
impl Hash for ValueGroup
Source§impl PartialEq for ValueGroup
impl PartialEq for ValueGroup
Source§impl PartialOrd for ValueGroup
impl PartialOrd for ValueGroup
impl Eq for ValueGroup
impl StructuralPartialEq for ValueGroup
Auto Trait Implementations§
impl Freeze for ValueGroup
impl RefUnwindSafe for ValueGroup
impl Send for ValueGroup
impl Sync for ValueGroup
impl Unpin for ValueGroup
impl UnwindSafe for ValueGroup
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