Struct ethers_solc::artifacts::bytecode::CompactBytecode
source · [−]pub struct CompactBytecode {
pub object: BytecodeObject,
pub source_map: Option<String>,
pub link_references: BTreeMap<String, BTreeMap<String, Vec<Offsets>>>,
}
Fields
object: BytecodeObject
The bytecode as a hex string.
source_map: Option<String>
The source mapping as a string. See the source mapping definition.
link_references: BTreeMap<String, BTreeMap<String, Vec<Offsets>>>
If given, this is an unlinked object.
Implementations
sourceimpl CompactBytecode
impl CompactBytecode
sourcepub fn empty() -> Self
pub fn empty() -> Self
Returns a new CompactBytecode
object that contains nothing, as it’s the case for
interfaces and standalone solidity files that don’t contain any contract definitions
sourcepub fn source_map(&self) -> Option<Result<SourceMap, SyntaxError>>
pub fn source_map(&self) -> Option<Result<SourceMap, SyntaxError>>
Returns the parsed source map
See also https://docs.soliditylang.org/en/v0.8.10/internals/source_mappings.html
sourcepub fn link(
&mut self,
file: impl AsRef<str>,
library: impl AsRef<str>,
address: Address
) -> bool
pub fn link(
&mut self,
file: impl AsRef<str>,
library: impl AsRef<str>,
address: Address
) -> bool
Tries to link the bytecode object with the file
and library
name.
Replaces all library placeholders with the given address.
Returns true if the bytecode object is fully linked, false otherwise This is a noop if the bytecode object is already fully linked.
Trait Implementations
sourceimpl Clone for CompactBytecode
impl Clone for CompactBytecode
sourcefn clone(&self) -> CompactBytecode
fn clone(&self) -> CompactBytecode
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CompactBytecode
impl Debug for CompactBytecode
sourceimpl<'de> Deserialize<'de> for CompactBytecode
impl<'de> Deserialize<'de> for CompactBytecode
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Bytecode> for CompactBytecode
impl From<Bytecode> for CompactBytecode
sourcefn from(bcode: Bytecode) -> CompactBytecode
fn from(bcode: Bytecode) -> CompactBytecode
Converts to this type from the input type.
sourceimpl From<CompactBytecode> for Bytecode
impl From<CompactBytecode> for Bytecode
sourcefn from(bcode: CompactBytecode) -> Bytecode
fn from(bcode: CompactBytecode) -> Bytecode
Converts to this type from the input type.
sourceimpl PartialEq<CompactBytecode> for CompactBytecode
impl PartialEq<CompactBytecode> for CompactBytecode
sourcefn eq(&self, other: &CompactBytecode) -> bool
fn eq(&self, other: &CompactBytecode) -> bool
sourceimpl Serialize for CompactBytecode
impl Serialize for CompactBytecode
impl Eq for CompactBytecode
impl StructuralEq for CompactBytecode
impl StructuralPartialEq for CompactBytecode
Auto Trait Implementations
impl RefUnwindSafe for CompactBytecode
impl Send for CompactBytecode
impl Sync for CompactBytecode
impl Unpin for CompactBytecode
impl UnwindSafe for CompactBytecode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.