pub struct CustomFieldEssentialsWithValue {
pub id: u64,
pub name: String,
pub multiple: Option<bool>,
pub value: Option<Vec<String>>,
}Expand description
a type for custom field essentials with values used in other Redmine objects (e.g. issues)
Fields
id: u64numeric id
name: Stringdisplay name
multiple: Option<bool>if this is true the value is serialized as an array
value: Option<Vec<String>>value
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for CustomFieldEssentialsWithValue
impl Sync for CustomFieldEssentialsWithValue
impl Unpin for CustomFieldEssentialsWithValue
impl UnwindSafe for CustomFieldEssentialsWithValue
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more