diff options
Diffstat (limited to 'vendor/gix/src/attributes.rs')
-rw-r--r-- | vendor/gix/src/attributes.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/gix/src/attributes.rs b/vendor/gix/src/attributes.rs new file mode 100644 index 000000000..bb8636460 --- /dev/null +++ b/vendor/gix/src/attributes.rs @@ -0,0 +1,9 @@ +/// The error returned by [`Repository::attributes()`][crate::Repository::attributes()]. +#[derive(Debug, thiserror::Error)] +#[allow(missing_docs)] +pub enum Error { + #[error(transparent)] + ConfigureAttributes(#[from] crate::config::attribute_stack::Error), + #[error(transparent)] + ConfigureExcludes(#[from] crate::config::exclude_stack::Error), +} |