Struct azure_devops_rust_api::wit::models::WorkItemLink
source · pub struct WorkItemLink {
pub rel: Option<String>,
pub source: Option<WorkItemReference>,
pub target: Option<WorkItemReference>,
}
Expand description
A link between two work items.
Fields§
§rel: Option<String>
The type of link.
source: Option<WorkItemReference>
Contains reference to a work item.
target: Option<WorkItemReference>
Contains reference to a work item.
Implementations§
source§impl WorkItemLink
impl WorkItemLink
Trait Implementations§
source§impl Clone for WorkItemLink
impl Clone for WorkItemLink
source§fn clone(&self) -> WorkItemLink
fn clone(&self) -> WorkItemLink
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 WorkItemLink
impl Debug for WorkItemLink
source§impl Default for WorkItemLink
impl Default for WorkItemLink
source§fn default() -> WorkItemLink
fn default() -> WorkItemLink
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WorkItemLink
impl<'de> Deserialize<'de> for WorkItemLink
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 WorkItemLink
impl PartialEq for WorkItemLink
source§fn eq(&self, other: &WorkItemLink) -> bool
fn eq(&self, other: &WorkItemLink) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WorkItemLink
impl Serialize for WorkItemLink
impl StructuralPartialEq for WorkItemLink
Auto Trait Implementations§
impl Freeze for WorkItemLink
impl RefUnwindSafe for WorkItemLink
impl Send for WorkItemLink
impl Sync for WorkItemLink
impl Unpin for WorkItemLink
impl UnwindSafe for WorkItemLink
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