diff --git a/rust/nix-store/src/store.rs b/rust/nix-store/src/store.rs index 8b74a85..9ac67ed 100644 --- a/rust/nix-store/src/store.rs +++ b/rust/nix-store/src/store.rs @@ -74,6 +74,7 @@ impl Store { /// Open a store. /// /// See [nix_c_raw::store_open] for more information. + #[doc(alias = "nix_store_open")] pub fn open<'a, 'b>( url: Option<&str>, params: impl IntoIterator, @@ -172,6 +173,7 @@ impl Store { self.inner.ptr() } + #[doc(alias = "nix_store_get_uri")] pub fn get_uri(&mut self) -> Result { let mut r = result_string_init!(); unsafe {