We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 796932b commit 420d622Copy full SHA for 420d622
rust/src/project.rs
@@ -21,11 +21,11 @@ pub struct Project {
21
}
22
23
impl Project {
24
- pub(crate) unsafe fn from_raw(handle: NonNull<BNProject>) -> Self {
+ pub unsafe fn from_raw(handle: NonNull<BNProject>) -> Self {
25
Project { handle }
26
27
28
- pub(crate) unsafe fn ref_from_raw(handle: NonNull<BNProject>) -> Ref<Self> {
+ pub unsafe fn ref_from_raw(handle: NonNull<BNProject>) -> Ref<Self> {
29
Ref::new(Self { handle })
30
31
0 commit comments