diff options
Diffstat (limited to 'docs/devel')
| -rw-r--r-- | docs/devel/rust.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/rust.rst b/docs/devel/rust.rst index 20d15347de..29eb48af35 100644 --- a/docs/devel/rust.rst +++ b/docs/devel/rust.rst @@ -278,7 +278,7 @@ a raw pointer, for use in calls to C functions. It can be used for example as follows:: #[repr(transparent)] - #[derive(Debug, qemu_api_macros::Wrapper)] + #[derive(Debug, common::Wrapper)] pub struct Object(Opaque<bindings::Object>); where the special ``derive`` macro provides useful methods such as |