pub struct UseLibPath {
pub path: String,
pub from_findbin: bool,
}Expand description
A discovered include path from a use lib statement.
Fields§
§path: StringThe resolved directory path (relative or absolute).
from_findbin: boolWhether this path was derived from a FindBin variable.
Trait Implementations§
Source§impl Clone for UseLibPath
impl Clone for UseLibPath
Source§fn clone(&self) -> UseLibPath
fn clone(&self) -> UseLibPath
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UseLibPath
impl Debug for UseLibPath
Source§impl PartialEq for UseLibPath
impl PartialEq for UseLibPath
impl Eq for UseLibPath
impl StructuralPartialEq for UseLibPath
Auto Trait Implementations§
impl Freeze for UseLibPath
impl RefUnwindSafe for UseLibPath
impl Send for UseLibPath
impl Sync for UseLibPath
impl Unpin for UseLibPath
impl UnsafeUnpin for UseLibPath
impl UnwindSafe for UseLibPath
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