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