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: u64
numeric id
name: String
display name
multiple: Option<bool>
if this is true the value is serialized as an array
value: Option<Vec<String>>
value
Trait Implementations§
Source§impl Clone for CustomFieldEssentialsWithValue
impl Clone for CustomFieldEssentialsWithValue
Source§fn clone(&self) -> CustomFieldEssentialsWithValue
fn clone(&self) -> CustomFieldEssentialsWithValue
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<'de> Deserialize<'de> for CustomFieldEssentialsWithValue
impl<'de> Deserialize<'de> for CustomFieldEssentialsWithValue
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 CustomFieldEssentialsWithValue
impl PartialEq for CustomFieldEssentialsWithValue
Source§fn eq(&self, other: &CustomFieldEssentialsWithValue) -> bool
fn eq(&self, other: &CustomFieldEssentialsWithValue) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CustomFieldEssentialsWithValue
impl StructuralPartialEq for CustomFieldEssentialsWithValue
Auto Trait Implementations§
impl Freeze for CustomFieldEssentialsWithValue
impl RefUnwindSafe for CustomFieldEssentialsWithValue
impl Send for CustomFieldEssentialsWithValue
impl Sync for CustomFieldEssentialsWithValue
impl Unpin for CustomFieldEssentialsWithValue
impl UnwindSafe for CustomFieldEssentialsWithValue
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