pub enum DuneInvocation {
System,
OpamExec,
}Expand description
Specifies how the dune command should be invoked.
Variants§
System
Invoke dune directly from the system path.
OpamExec
Invoke dune via opam exec -- dune. This is the default.
Trait Implementations§
Source§impl Clone for DuneInvocation
impl Clone for DuneInvocation
Source§fn clone(&self) -> DuneInvocation
fn clone(&self) -> DuneInvocation
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 DuneInvocation
impl Debug for DuneInvocation
Source§impl PartialEq for DuneInvocation
impl PartialEq for DuneInvocation
impl Eq for DuneInvocation
impl StructuralPartialEq for DuneInvocation
Auto Trait Implementations§
impl Freeze for DuneInvocation
impl RefUnwindSafe for DuneInvocation
impl Send for DuneInvocation
impl Sync for DuneInvocation
impl Unpin for DuneInvocation
impl UnwindSafe for DuneInvocation
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