You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.or_else(|| panic!("nix_derivation_clone returned a null pointer"))
29
+
.unwrap(),
30
+
)
31
+
}
32
+
33
+
/// This is a low level function that you shouldn't have to call unless you are developing the Nix bindings.
34
+
///
35
+
/// Get a pointer to the underlying Nix C API derivation.
36
+
///
37
+
/// # Safety
38
+
///
39
+
/// This function is unsafe because it returns a raw pointer. The caller must ensure that the pointer is not used beyond the lifetime of this `Derivation`.
0 commit comments