pub struct LinkerSet<T>where
T: 'static,{ /* private fields */ }
Expand description
A proxy object that represents a linker set.
You can store this object if you should want the ability to create multiple iterators on the linker set, or maybe if you wanted to keep track of a specific linker set out of some number of them.
Implementations§
Source§impl<T> LinkerSet<T>where
T: 'static,
impl<T> LinkerSet<T>where
T: 'static,
Trait Implementations§
Source§impl<T> IntoIterator for LinkerSet<T>where
T: 'static,
impl<T> IntoIterator for LinkerSet<T>where
T: 'static,
impl<T: Send> Send for LinkerSet<T>
impl<T: Sync> Sync for LinkerSet<T>
Auto Trait Implementations§
impl<T> Freeze for LinkerSet<T>
impl<T> RefUnwindSafe for LinkerSet<T>where
T: RefUnwindSafe,
impl<T> Unpin for LinkerSet<T>
impl<T> UnwindSafe for LinkerSet<T>where
T: RefUnwindSafe,
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