From e78c003bc555a5cb9396c5d65d3a9831507813de Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 28 Dec 2021 21:59:56 -0600 Subject: Expose Operation<'o> in the public API --- src/fuse/ops.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/fuse/ops.rs') diff --git a/src/fuse/ops.rs b/src/fuse/ops.rs index 4727d10..f715e12 100644 --- a/src/fuse/ops.rs +++ b/src/fuse/ops.rs @@ -18,8 +18,9 @@ use super::{ macro_rules! op { { $name:ident $operation:tt } => { - pub struct $name(()); + pub struct $name(std::convert::Infallible); + impl super::private_trait::Sealed for $name {} impl<'o> Operation<'o> for $name $operation }; -- cgit v1.2.3