pub trait SetAttr {
// Required method
fn set_attr(
&self,
pattern: &str,
attributes: &[&str],
gitattributes: &Path,
) -> Result<(), Error>;
}Expand description
A trait which provides methods for settings attributes in a Git repository.