pub struct ListFieldValue {
pub id: Uuid,
pub name: String,
pub sort_order: i32,
pub numeric_value: Option<f64>,
pub color: Option<String>,
}Expand description
Represents a value in a list field.
Fields§
§id: Uuid§name: String§sort_order: i32§numeric_value: Option<f64>§color: Option<String>Trait Implementations§
Source§impl Clone for ListFieldValue
impl Clone for ListFieldValue
Source§fn clone(&self) -> ListFieldValue
fn clone(&self) -> ListFieldValue
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 ListFieldValue
impl Debug for ListFieldValue
Source§impl<'de> Deserialize<'de> for ListFieldValue
impl<'de> Deserialize<'de> for ListFieldValue
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
Auto Trait Implementations§
impl Freeze for ListFieldValue
impl RefUnwindSafe for ListFieldValue
impl Send for ListFieldValue
impl Sync for ListFieldValue
impl Unpin for ListFieldValue
impl UnsafeUnpin for ListFieldValue
impl UnwindSafe for ListFieldValue
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