Skip to content
Snippets Groups Projects
Commit 5e1b82ba authored by Maaz Ahmed's avatar Maaz Ahmed
Browse files

qol: impl Operable on references of Operable types as well

parent 79650cb5
No related branches found
No related tags found
No related merge requests found
Pipeline #14721 passed with stages
in 2 minutes and 30 seconds
......@@ -215,6 +215,8 @@ pub enum Method {
// them directly
mod seal {
pub trait Sealed {}
impl<T: Sealed> Sealed for &T {}
impl<T: Sealed> Sealed for &mut T {}
}
/// Signifies that a query has been validated through some of the validation methods
......
......@@ -31,3 +31,6 @@ pub use logic::Logical;
/// Marker trait for signifying that a type can be used with the operators
pub trait Operable: Display + Sealed {}
impl<T: Operable> Operable for &T {}
impl<T: Operable> Operable for &mut T {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment