pub enum Entries<'a> {
Library(Library<'a>),
Array(Array<'a>),
Rpath(Rpath<'a>),
RunPath(RunPath<'a>),
SharedObject(SharedObject<'a>),
Generic(Generic<'a>),
}
Expand description
Enum that represents the different variants of a dynamic entry
Variants§
Library(Library<'a>)
Entry for DT_NEEDED
Array(Array<'a>)
Entry for DT_INIT_ARRAY, DT_FINI_ARRAY
, …
Rpath(Rpath<'a>)
Entry for DT_RPATH
RunPath(RunPath<'a>)
Entry for DT_RUNPATH
Entry for DT_SONAME
Generic(Generic<'a>)
Generic value
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Entries<'a>
impl<'a> !Send for Entries<'a>
impl<'a> !Sync for Entries<'a>
impl<'a> Unpin for Entries<'a>
impl<'a> UnwindSafe for Entries<'a>
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