pub struct WorkItemRelation {
pub id: String,
pub name: String,
pub disabled: bool,
pub work_item_type_key: String,
pub work_item_type_name: String,
pub relation_details: Vec<RelationDetail>,
pub relation_type: i64,
}Fields§
§id: String§name: String§disabled: bool§work_item_type_key: String§work_item_type_name: String§relation_details: Vec<RelationDetail>§relation_type: i64Trait Implementations§
Source§impl Clone for WorkItemRelation
impl Clone for WorkItemRelation
Source§fn clone(&self) -> WorkItemRelation
fn clone(&self) -> WorkItemRelation
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 Debug for WorkItemRelation
impl Debug for WorkItemRelation
Source§impl<'de> Deserialize<'de> for WorkItemRelation
impl<'de> Deserialize<'de> for WorkItemRelation
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
Auto Trait Implementations§
impl Freeze for WorkItemRelation
impl RefUnwindSafe for WorkItemRelation
impl Send for WorkItemRelation
impl Sync for WorkItemRelation
impl Unpin for WorkItemRelation
impl UnwindSafe for WorkItemRelation
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