pub struct Table {
pub name: String,
pub path: PathBuf,
pub product_dir: PathBuf,
pub exact: Option<Deps>,
pub inexact: Option<Deps>,
pub env_var: FnvHashMap<String, (EnvActionType, String)>,
}
Expand description
Structure containing all the information about an on disk table file
Fields§
§name: String
§path: PathBuf
§product_dir: PathBuf
§exact: Option<Deps>
§inexact: Option<Deps>
§env_var: FnvHashMap<String, (EnvActionType, String)>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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