pub struct CustomFieldContextDefaultValueMultipleOption {
pub context_id: String,
pub option_ids: Vec<String>,
pub type: String,
}
Expand description
CustomFieldContextDefaultValueMultipleOption : Default value for a multi-select custom field.
Fields§
§context_id: String
The ID of the context.
option_ids: Vec<String>
The list of IDs of the default options.
type: String
Implementations§
Trait Implementations§
Source§impl Clone for CustomFieldContextDefaultValueMultipleOption
impl Clone for CustomFieldContextDefaultValueMultipleOption
Source§fn clone(&self) -> CustomFieldContextDefaultValueMultipleOption
fn clone(&self) -> CustomFieldContextDefaultValueMultipleOption
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 Default for CustomFieldContextDefaultValueMultipleOption
impl Default for CustomFieldContextDefaultValueMultipleOption
Source§fn default() -> CustomFieldContextDefaultValueMultipleOption
fn default() -> CustomFieldContextDefaultValueMultipleOption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomFieldContextDefaultValueMultipleOption
impl<'de> Deserialize<'de> for CustomFieldContextDefaultValueMultipleOption
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 CustomFieldContextDefaultValueMultipleOption
impl PartialEq for CustomFieldContextDefaultValueMultipleOption
Source§fn eq(&self, other: &CustomFieldContextDefaultValueMultipleOption) -> bool
fn eq(&self, other: &CustomFieldContextDefaultValueMultipleOption) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CustomFieldContextDefaultValueMultipleOption
Auto Trait Implementations§
impl Freeze for CustomFieldContextDefaultValueMultipleOption
impl RefUnwindSafe for CustomFieldContextDefaultValueMultipleOption
impl Send for CustomFieldContextDefaultValueMultipleOption
impl Sync for CustomFieldContextDefaultValueMultipleOption
impl Unpin for CustomFieldContextDefaultValueMultipleOption
impl UnwindSafe for CustomFieldContextDefaultValueMultipleOption
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