diff options
Diffstat (limited to 'src/call/mod.rs')
-rw-r--r-- | src/call/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/call/mod.rs b/src/call/mod.rs index 51fca5a..6b44a16 100644 --- a/src/call/mod.rs +++ b/src/call/mod.rs @@ -1,5 +1,5 @@ // A call to the API. -pub trait Call: Into<xmlrpc::Value> { +pub trait Call: Clone + std::fmt::Debug + Into<xmlrpc::Value> { fn method_name(&self) -> &'static str; fn expected(&self) -> &'static [i32]; } |