pub struct CompilerInput {
    pub language: String,
    pub sources: Sources,
    pub settings: Settings,
}
Expand description

Input type solc expects

Fields§

§language: String§sources: Sources§settings: Settings

Implementations§

source§

impl CompilerInput

source

pub fn new(path: impl AsRef<Path>) -> Result<Vec<Self>, SolcIoError>

Reads all contracts found under the path

source

pub fn with_sources(sources: Sources) -> Vec<Self>

Creates a new CompilerInputs with default settings and the given sources

A CompilerInput expects a language setting, supported by solc are solidity or yul. In case the sources is a mix of solidity and yul files, 2 CompilerInputs are returned

source

pub fn sanitize(&mut self, version: &Version)

This will remove/adjust values in the CompilerInput that are not compatible with this version

source

pub fn sanitized(self, version: &Version) -> Self

Consumes the type and returns a CompilerInput::sanitized version

source

pub fn settings(self, settings: Settings) -> Self

Sets the settings for compilation

source

pub fn evm_version(self, version: EvmVersion) -> Self

Sets the EVM version for compilation

source

pub fn optimizer(self, runs: usize) -> Self

Sets the optimizer runs (default = 200)

source

pub fn normalize_evm_version(self, version: &Version) -> Self

Normalizes the EVM version used in the settings to be up to the latest one supported by the provided compiler version.

source

pub fn with_remappings(self, remappings: Vec<Remapping>) -> Self

source

pub fn join_path(self, root: impl AsRef<Path>) -> Self

Sets the path of the source files to root adjoined to the existing path

source

pub fn strip_prefix(self, base: impl AsRef<Path>) -> Self

Removes the base path from all source files

source

pub fn with_base_path(self, base: impl AsRef<Path>) -> Self

Similar to Self::strip_prefix(). Remove a base path from all sources and all paths in solc settings such as remappings

See also solc --base-path

source

pub fn is_yul(&self) -> bool

The flag indicating whether the current CompilerInput is constructed for the yul sources

Trait Implementations§

source§

impl Clone for CompilerInput

source§

fn clone(&self) -> CompilerInput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CompilerInput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for CompilerInput

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<CompilerInput> for StandardJsonCompilerInput

source§

fn from(input: CompilerInput) -> Self

Converts to this type from the input type.
source§

impl From<StandardJsonCompilerInput> for CompilerInput

source§

fn from(input: StandardJsonCompilerInput) -> Self

Converts to this type from the input type.
source§

impl Serialize for CompilerInput

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> JsonSchemaMaybe for T