pub enum LibraryLocation {
Archive(String),
Dylib(String),
Both {
archive: String,
dylib: String,
},
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LibraryLocation
impl RefUnwindSafe for LibraryLocation
impl Send for LibraryLocation
impl Sync for LibraryLocation
impl Unpin for LibraryLocation
impl UnwindSafe for LibraryLocation
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