Struct azure_devops_rust_api::processes::models::PickListMetadata
source · pub struct PickListMetadata {
pub id: Option<String>,
pub is_suggested: Option<bool>,
pub name: Option<String>,
pub type_: Option<String>,
pub url: Option<String>,
}
Expand description
Metadata for picklist.
Fields§
§id: Option<String>
ID of the picklist
is_suggested: Option<bool>
Indicates whether items outside of suggested list are allowed
name: Option<String>
Name of the picklist
type_: Option<String>
DataType of picklist
url: Option<String>
Url of the picklist
Implementations§
Trait Implementations§
source§impl Clone for PickListMetadata
impl Clone for PickListMetadata
source§fn clone(&self) -> PickListMetadata
fn clone(&self) -> PickListMetadata
Returns a copy 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 PickListMetadata
impl Debug for PickListMetadata
source§impl Default for PickListMetadata
impl Default for PickListMetadata
source§fn default() -> PickListMetadata
fn default() -> PickListMetadata
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PickListMetadata
impl<'de> Deserialize<'de> for PickListMetadata
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 PickListMetadata
impl PartialEq for PickListMetadata
source§fn eq(&self, other: &PickListMetadata) -> bool
fn eq(&self, other: &PickListMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PickListMetadata
impl Serialize for PickListMetadata
impl StructuralPartialEq for PickListMetadata
Auto Trait Implementations§
impl RefUnwindSafe for PickListMetadata
impl Send for PickListMetadata
impl Sync for PickListMetadata
impl Unpin for PickListMetadata
impl UnwindSafe for PickListMetadata
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