Struct azure_devops_rust_api::tfvc::models::TfvcLabelRef
source · pub struct TfvcLabelRef {
pub links: Option<Value>,
pub description: Option<String>,
pub id: Option<i32>,
pub label_scope: Option<String>,
pub modified_date: Option<OffsetDateTime>,
pub name: Option<String>,
pub owner: Option<IdentityRef>,
pub url: Option<String>,
}
Expand description
Metadata for a Label.
Fields§
§links: Option<Value>
Links
description: Option<String>
Label description.
id: Option<i32>
Label Id.
label_scope: Option<String>
Label scope.
modified_date: Option<OffsetDateTime>
Last modified datetime for the label.
name: Option<String>
Label name.
owner: Option<IdentityRef>
§url: Option<String>
Label Url.
Implementations§
source§impl TfvcLabelRef
impl TfvcLabelRef
Trait Implementations§
source§impl Clone for TfvcLabelRef
impl Clone for TfvcLabelRef
source§fn clone(&self) -> TfvcLabelRef
fn clone(&self) -> TfvcLabelRef
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 TfvcLabelRef
impl Debug for TfvcLabelRef
source§impl Default for TfvcLabelRef
impl Default for TfvcLabelRef
source§fn default() -> TfvcLabelRef
fn default() -> TfvcLabelRef
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TfvcLabelRef
impl<'de> Deserialize<'de> for TfvcLabelRef
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 TfvcLabelRef
impl PartialEq for TfvcLabelRef
source§fn eq(&self, other: &TfvcLabelRef) -> bool
fn eq(&self, other: &TfvcLabelRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TfvcLabelRef
impl Serialize for TfvcLabelRef
impl StructuralPartialEq for TfvcLabelRef
Auto Trait Implementations§
impl RefUnwindSafe for TfvcLabelRef
impl Send for TfvcLabelRef
impl Sync for TfvcLabelRef
impl Unpin for TfvcLabelRef
impl UnwindSafe for TfvcLabelRef
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