pub struct OutputCustomFieldValue {
pub _id: String,
pub name: String,
pub description: String,
pub type: String,
pub value: Option<Value>,
pub order: i32,
}Fields§
§_id: String§name: String§description: String§type: String§value: Option<Value>§order: i32Implementations§
Trait Implementations§
Source§impl Clone for OutputCustomFieldValue
impl Clone for OutputCustomFieldValue
Source§fn clone(&self) -> OutputCustomFieldValue
fn clone(&self) -> OutputCustomFieldValue
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 OutputCustomFieldValue
impl Debug for OutputCustomFieldValue
Source§impl Default for OutputCustomFieldValue
impl Default for OutputCustomFieldValue
Source§fn default() -> OutputCustomFieldValue
fn default() -> OutputCustomFieldValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputCustomFieldValue
impl<'de> Deserialize<'de> for OutputCustomFieldValue
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 OutputCustomFieldValue
impl PartialEq for OutputCustomFieldValue
Source§impl Serialize for OutputCustomFieldValue
impl Serialize for OutputCustomFieldValue
impl StructuralPartialEq for OutputCustomFieldValue
Auto Trait Implementations§
impl Freeze for OutputCustomFieldValue
impl RefUnwindSafe for OutputCustomFieldValue
impl Send for OutputCustomFieldValue
impl Sync for OutputCustomFieldValue
impl Unpin for OutputCustomFieldValue
impl UnwindSafe for OutputCustomFieldValue
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