assemble-core 0.2.0

The core crate of the assemble-rs package
Documentation
1
2
3
4
5
6
7
8
9
//! Default attributes for configuration matching

use crate::flow::attributes::Attribute;

/// The type of the dependency.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Type;

impl Attribute for Type {}