assemble_core/defaults/
attributes.rs

1//! Default attributes for configuration matching
2
3use crate::flow::attributes::Attribute;
4
5/// The type of the dependency.
6#[derive(Debug, Clone, PartialEq, Eq)]
7pub struct Type;
8
9impl Attribute for Type {}