pub struct MatrixEntry {
pub label: String,
pub features: String,
pub os: String,
}Expand description
One entry in the feature × OS matrix.
Fields§
§label: StringHuman-readable label used in log output and CI job names.
features: StringComma-separated feature list passed to --features, or empty for the
default build.
os: StringGitHub Actions runner OS (e.g. ubuntu-latest, macos-latest).
Implementations§
Source§impl MatrixEntry
impl MatrixEntry
Sourcepub fn cargo_args(&self) -> Vec<&str>
pub fn cargo_args(&self) -> Vec<&str>
Returns the cargo arguments for this entry (excluding the subcommand).
For clippy, callers append -- -D warnings; for test, callers prepend
nextest run or test --doc.
Trait Implementations§
Source§impl Clone for MatrixEntry
impl Clone for MatrixEntry
Source§fn clone(&self) -> MatrixEntry
fn clone(&self) -> MatrixEntry
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 MatrixEntry
impl Debug for MatrixEntry
Source§impl PartialEq for MatrixEntry
impl PartialEq for MatrixEntry
Source§impl Serialize for MatrixEntry
impl Serialize for MatrixEntry
impl Eq for MatrixEntry
impl StructuralPartialEq for MatrixEntry
Auto Trait Implementations§
impl Freeze for MatrixEntry
impl RefUnwindSafe for MatrixEntry
impl Send for MatrixEntry
impl Sync for MatrixEntry
impl Unpin for MatrixEntry
impl UnwindSafe for MatrixEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.