pub struct LibraryDiscovery {
pub name: String,
pub root: PathBuf,
pub headers: Vec<PathBuf>,
pub main_header: Option<PathBuf>,
}Expand description
A discovered C library with its headers.
Fields§
§name: StringLibrary name (e.g., “stm32f4xx_hal”)
root: PathBufRoot directory of the library
headers: Vec<PathBuf>All header files found
main_header: Option<PathBuf>Main/public header (if identifiable)
Trait Implementations§
Source§impl Clone for LibraryDiscovery
impl Clone for LibraryDiscovery
Source§fn clone(&self) -> LibraryDiscovery
fn clone(&self) -> LibraryDiscovery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LibraryDiscovery
impl RefUnwindSafe for LibraryDiscovery
impl Send for LibraryDiscovery
impl Sync for LibraryDiscovery
impl Unpin for LibraryDiscovery
impl UnsafeUnpin for LibraryDiscovery
impl UnwindSafe for LibraryDiscovery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more