Struct glib::translate::Borrowed [−][src]
pub struct Borrowed<T>(_);
Expand description
Wrapper around values representing borrowed C memory.
This is returned by from_glib_borrow()
and ensures that the wrapped value
is never dropped when going out of scope.
Borrowed values must never be passed by value or mutable reference to safe Rust code and must not leave the C scope in which they are valid.
Implementations
Extracts the contained value.
Safety
The returned value must never be dropped and instead has to be passed to mem::forget()
or
be directly wrapped in mem::ManuallyDrop
or another Borrowed
wrapper.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Borrowed<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Borrowed<T> where
T: UnwindSafe,