We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e5659 commit 7c81b30Copy full SHA for 7c81b30
argus-core/src/expr/traits.rs
@@ -1,5 +1,3 @@
1
-use std::any::Any;
2
-
3
use enum_dispatch::enum_dispatch;
4
5
use super::{BoolExpr, ExprRef, NumExpr};
@@ -16,9 +14,6 @@ pub trait Expr {
16
14
/// If the expression doesn't contain arguments (i.e., it is a leaf expression) then
17
15
/// the vector is empty.
18
fn args(&self) -> Vec<ExprRef<'_>>;
19
20
- /// [`std::any::Any`] trampoline for expressions
21
- fn as_any(&self) -> &dyn Any;
22
}
23
24
/// Marker trait for numeric expressions
0 commit comments