summaryrefslogtreecommitdiff
path: root/system/gd/rust/linux/mgmt/src
diff options
context:
space:
mode:
Diffstat (limited to 'system/gd/rust/linux/mgmt/src')
-rw-r--r--system/gd/rust/linux/mgmt/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/system/gd/rust/linux/mgmt/src/lib.rs b/system/gd/rust/linux/mgmt/src/lib.rs
index 8e62d28855..97b239c931 100644
--- a/system/gd/rust/linux/mgmt/src/lib.rs
+++ b/system/gd/rust/linux/mgmt/src/lib.rs
@@ -12,4 +12,7 @@ pub trait RPCProxy {
/// Unregisters callback with this id.
fn unregister(&mut self, id: u32) -> bool;
+
+ /// Makes this object available for remote call.
+ fn export_for_rpc(self: Box<Self>);
}