pub struct Makefile<L: Logger> {
pub opts: Opts,
pub logger: Box<L>,
pub vars: Vars,
/* private fields */
}Expand description
The internal representation of a makefile.
Fields§
§opts: Opts§logger: Box<L>§vars: VarsImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<L> Freeze for Makefile<L>
impl<L> RefUnwindSafe for Makefile<L>where
L: RefUnwindSafe,
impl<L> Send for Makefile<L>where
L: Send,
impl<L> Sync for Makefile<L>where
L: Sync,
impl<L> Unpin for Makefile<L>
impl<L> UnwindSafe for Makefile<L>where
L: UnwindSafe,
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