pub struct DefineValue {
pub name: String,
pub order: Number,
pub description: String,
}Expand description
One of the values of a Define.
Fields§
§name: StringThe name of the define value.
order: NumberThe order of the member as shown in HTML.
description: StringThe text description of the define value.
Trait Implementations§
Source§impl Clone for DefineValue
impl Clone for DefineValue
Source§fn clone(&self) -> DefineValue
fn clone(&self) -> DefineValue
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 DefineValue
impl Debug for DefineValue
Source§impl<'de> Deserialize<'de> for DefineValue
impl<'de> Deserialize<'de> for DefineValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DefineValue
impl PartialEq for DefineValue
Source§impl Serialize for DefineValue
impl Serialize for DefineValue
impl Eq for DefineValue
impl StructuralPartialEq for DefineValue
Auto Trait Implementations§
impl Freeze for DefineValue
impl RefUnwindSafe for DefineValue
impl Send for DefineValue
impl Sync for DefineValue
impl Unpin for DefineValue
impl UnwindSafe for DefineValue
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