pub struct TestCaseResultAttachmentModel {
    pub action_path: Option<String>,
    pub id: Option<i32>,
    pub iteration_id: Option<i32>,
    pub name: Option<String>,
    pub size: Option<i64>,
    pub url: Option<String>,
}Expand description
Test attachment information in a test iteration.
Fields§
§action_path: Option<String>Path identifier test step in test case workitem.
id: Option<i32>Attachment ID.
iteration_id: Option<i32>Iteration ID.
name: Option<String>Name of attachment.
size: Option<i64>Attachment size.
url: Option<String>Url to attachment.
Implementations§
Trait Implementations§
source§impl Clone for TestCaseResultAttachmentModel
 
impl Clone for TestCaseResultAttachmentModel
source§fn clone(&self) -> TestCaseResultAttachmentModel
 
fn clone(&self) -> TestCaseResultAttachmentModel
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 Default for TestCaseResultAttachmentModel
 
impl Default for TestCaseResultAttachmentModel
source§fn default() -> TestCaseResultAttachmentModel
 
fn default() -> TestCaseResultAttachmentModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestCaseResultAttachmentModel
 
impl<'de> Deserialize<'de> for TestCaseResultAttachmentModel
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 TestCaseResultAttachmentModel
 
impl PartialEq for TestCaseResultAttachmentModel
source§fn eq(&self, other: &TestCaseResultAttachmentModel) -> bool
 
fn eq(&self, other: &TestCaseResultAttachmentModel) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TestCaseResultAttachmentModel
Auto Trait Implementations§
impl RefUnwindSafe for TestCaseResultAttachmentModel
impl Send for TestCaseResultAttachmentModel
impl Sync for TestCaseResultAttachmentModel
impl Unpin for TestCaseResultAttachmentModel
impl UnwindSafe for TestCaseResultAttachmentModel
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