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
ManuallyDrop<T>: Freeze,
impl<T> RefUnwindSafe for Borrowed<T>where
ManuallyDrop<T>: RefUnwindSafe,
impl<T> Send for Borrowed<T>where
ManuallyDrop<T>: Send,
impl<T> Sync for Borrowed<T>where
ManuallyDrop<T>: Sync,
impl<T> Unpin for Borrowed<T>where
ManuallyDrop<T>: Unpin,
impl<T> UnsafeUnpin for Borrowed<T>where
ManuallyDrop<T>: UnsafeUnpin,
impl<T> UnwindSafe for Borrowed<T>where
ManuallyDrop<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