pub struct DylibPathInfo {
pub path: String,
pub basename: String,
pub libname: String,
}
Expand description
Path information for a linked library.
For a path
’/home/libs/libmylib.so,
basenamewill be
myliband
libnamewill be
libmylib.so`
Fields§
§path: String
§basename: String
§libname: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DylibPathInfo
impl RefUnwindSafe for DylibPathInfo
impl Send for DylibPathInfo
impl Sync for DylibPathInfo
impl Unpin for DylibPathInfo
impl UnwindSafe for DylibPathInfo
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