pub struct AttachXUnitResultsParams {
pub file: Option<String>,
pub files: Option<Vec<String>>,
}Expand description
Parameters describing how to attach XUnit test results format to task.
Fields§
§file: Option<String>Path to a xunit file to parse and upload.
files: Option<Vec<String>>List of paths to a xunit file to parse and upload.
Trait Implementations§
Source§impl Clone for AttachXUnitResultsParams
impl Clone for AttachXUnitResultsParams
Source§fn clone(&self) -> AttachXUnitResultsParams
fn clone(&self) -> AttachXUnitResultsParams
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 AttachXUnitResultsParams
impl Debug for AttachXUnitResultsParams
Source§impl<'de> Deserialize<'de> for AttachXUnitResultsParams
impl<'de> Deserialize<'de> for AttachXUnitResultsParams
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 AttachXUnitResultsParams
impl RefUnwindSafe for AttachXUnitResultsParams
impl Send for AttachXUnitResultsParams
impl Sync for AttachXUnitResultsParams
impl Unpin for AttachXUnitResultsParams
impl UnwindSafe for AttachXUnitResultsParams
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