pub struct AttachArtifactsParams {
pub files: Vec<String>,
pub prefix: Option<String>,
pub optional: Option<bool>,
pub ignore_artifacts_for_spawn: Option<bool>,
}Expand description
Parameters describing how to attach artifacts to a task.
Fields§
§files: Vec<String>An array of gitignore file globs to attach.
prefix: Option<String>Path to start process the files, relative to the working directory.
optional: Option<bool>Don’t fail if files are not found to attach.
ignore_artifacts_for_spawn: Option<bool>Trait Implementations§
Source§impl Clone for AttachArtifactsParams
impl Clone for AttachArtifactsParams
Source§fn clone(&self) -> AttachArtifactsParams
fn clone(&self) -> AttachArtifactsParams
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 AttachArtifactsParams
impl Debug for AttachArtifactsParams
Source§impl<'de> Deserialize<'de> for AttachArtifactsParams
impl<'de> Deserialize<'de> for AttachArtifactsParams
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 AttachArtifactsParams
impl RefUnwindSafe for AttachArtifactsParams
impl Send for AttachArtifactsParams
impl Sync for AttachArtifactsParams
impl Unpin for AttachArtifactsParams
impl UnwindSafe for AttachArtifactsParams
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