Struct ethers_solc::report::BasicStdoutReporter
source · pub struct BasicStdoutReporter { /* private fields */ }
Expand description
A Reporter
that emits some general information to stdout
Trait Implementations§
source§impl Clone for BasicStdoutReporter
impl Clone for BasicStdoutReporter
source§fn clone(&self) -> BasicStdoutReporter
fn clone(&self) -> BasicStdoutReporter
Returns a copy 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 BasicStdoutReporter
impl Debug for BasicStdoutReporter
source§impl Default for BasicStdoutReporter
impl Default for BasicStdoutReporter
source§impl Reporter for BasicStdoutReporter
impl Reporter for BasicStdoutReporter
source§fn on_solc_spawn(
&self,
_solc: &Solc,
version: &Version,
input: &CompilerInput,
dirty_files: &[PathBuf]
)
fn on_solc_spawn( &self, _solc: &Solc, version: &Version, input: &CompilerInput, dirty_files: &[PathBuf] )
Callback invoked right before Solc::compile()
is called
source§fn on_solc_installation_start(&self, version: &Version)
fn on_solc_installation_start(&self, version: &Version)
Invoked before a new Solc
bin is installed
source§fn on_solc_installation_success(&self, version: &Version)
fn on_solc_installation_success(&self, version: &Version)
Invoked before a new Solc
bin was successfully installed
source§fn on_solc_success(
&self,
_solc: &Solc,
version: &Version,
output: &CompilerOutput,
duration: &Duration
)
fn on_solc_success( &self, _solc: &Solc, version: &Version, output: &CompilerOutput, duration: &Duration )
Invoked with the
CompilerOutput
if Solc::compile()
was successfulsource§fn on_solc_installation_error(&self, version: &Version, error: &str)
fn on_solc_installation_error(&self, version: &Version, error: &str)
Invoked after a
Solc
installation failedAuto Trait Implementations§
impl RefUnwindSafe for BasicStdoutReporter
impl Send for BasicStdoutReporter
impl Sync for BasicStdoutReporter
impl Unpin for BasicStdoutReporter
impl UnwindSafe for BasicStdoutReporter
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