pub struct FieldValue {
pub date: Option<Date>,
pub integer: Option<Integer>,
pub selection: Option<Selection>,
pub selection_list: Option<SelectionList>,
pub text: Option<Text>,
pub text_list: Option<TextList>,
pub user: Option<SingleUser>,
pub user_list: Option<UserList>,
}Expand description
Contains a value of a Field.
This type is not used in any activity, and only used as part of another schema.
Fields§
§date: Option<Date>Date Field value.
integer: Option<Integer>Integer Field value.
selection: Option<Selection>Selection Field value.
selection_list: Option<SelectionList>Selection List Field value.
text: Option<Text>Text Field value.
text_list: Option<TextList>Text List Field value.
user: Option<SingleUser>User Field value.
user_list: Option<UserList>User List Field value.
Trait Implementations§
Source§impl Clone for FieldValue
impl Clone for FieldValue
Source§fn clone(&self) -> FieldValue
fn clone(&self) -> FieldValue
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 FieldValue
impl Debug for FieldValue
Source§impl Default for FieldValue
impl Default for FieldValue
Source§fn default() -> FieldValue
fn default() -> FieldValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FieldValue
impl<'de> Deserialize<'de> for FieldValue
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 Serialize for FieldValue
impl Serialize for FieldValue
impl Part for FieldValue
Auto Trait Implementations§
impl Freeze for FieldValue
impl RefUnwindSafe for FieldValue
impl Send for FieldValue
impl Sync for FieldValue
impl Unpin for FieldValue
impl UnwindSafe for FieldValue
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