aboutsummaryrefslogtreecommitdiff
path: root/src/ast
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-29 12:13:59 +0000
committerFuwn <[email protected]>2024-06-29 12:13:59 +0000
commit5d9579dd6beb38892053c68495e93a78f83a5fcc (patch)
treef35f936583a412f819f009442c54b88b6785a274 /src/ast
parentfix(ast): optional whitespace following heading markers (diff)
downloadgerm-0.4.4.tar.xz
germ-0.4.4.zip
feat: derive all for public typesv0.4.4
Diffstat (limited to 'src/ast')
-rw-r--r--src/ast/container.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/container.rs b/src/ast/container.rs
index 4f41f9d..c8f9ecf 100644
--- a/src/ast/container.rs
+++ b/src/ast/container.rs
@@ -25,7 +25,7 @@ use super::Node;
/// ```rust
/// let _ = germ::ast::Ast::from_string(r#"=> gemini://gem.rest/ GemRest"#);
/// ```
-#[derive(Clone)]
+#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Ast {
inner: Vec<Node>,
}