pub struct Sdk { /* private fields */ }Expand description
An SDK found by find_windows_sdk
Implementations§
Source§impl Sdk
impl Sdk
Sourcepub fn libs(&self) -> impl Iterator<Item = &Path>
pub fn libs(&self) -> impl Iterator<Item = &Path>
Directories containing static libraries (e.g. .lib files).
Sourcepub fn path(&self) -> impl Iterator<Item = &Path>
pub fn path(&self) -> impl Iterator<Item = &Path>
Directories containing binaries (.exe and .dll files).
Sourcepub fn include(&self) -> impl Iterator<Item = &Path>
pub fn include(&self) -> impl Iterator<Item = &Path>
Directories containing source headers (e.g. .h files)
Sourcepub fn sdk_version(&self) -> &str
pub fn sdk_version(&self) -> &str
The Windows SDK version that was found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sdk
impl RefUnwindSafe for Sdk
impl Send for Sdk
impl Sync for Sdk
impl Unpin for Sdk
impl UnwindSafe for Sdk
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