pub struct Borrowed<T>(/* private fields */);
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§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Borrowed<T>where
T: Freeze,
impl<T> RefUnwindSafe for Borrowed<T>where
T: RefUnwindSafe,
impl<T> Send for Borrowed<T>where
T: Send,
impl<T> Sync for Borrowed<T>where
T: Sync,
impl<T> Unpin for Borrowed<T>where
T: Unpin,
impl<T> UnwindSafe for Borrowed<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more