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 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 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
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestCaseResultAttachmentModel
Auto Trait Implementations§
impl Freeze for TestCaseResultAttachmentModel
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