pub struct Artifacts {
pub commit_hashes: Vec<String>,
pub pr_urls: Vec<String>,
pub linked_issues: Vec<String>,
pub files: Vec<String>,
pub branch_names: Vec<String>,
}Expand description
Structured artifacts collected from one or many events. All vectors
are deduplicated (case-sensitive) by the merge constructor — the
extractor itself emits raw matches.
Fields§
§commit_hashes: Vec<String>§pr_urls: Vec<String>§linked_issues: Vec<String>§files: Vec<String>§branch_names: Vec<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Artifacts
impl<'de> Deserialize<'de> for Artifacts
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
impl Eq for Artifacts
impl StructuralPartialEq for Artifacts
Auto Trait Implementations§
impl Freeze for Artifacts
impl RefUnwindSafe for Artifacts
impl Send for Artifacts
impl Sync for Artifacts
impl Unpin for Artifacts
impl UnsafeUnpin for Artifacts
impl UnwindSafe for Artifacts
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