pub struct ProxyConfig {
pub path: String,
pub override_import: String,
pub path_rename: Vec<PathRename>,
pub abi: ContractAbi,
}
Fields§
§path: String
§override_import: String
§path_rename: Vec<PathRename>
§abi: ContractAbi
Implementations§
Source§impl ProxyConfig
impl ProxyConfig
pub fn new( path: String, override_imports: Option<String>, path_rename: Option<Vec<PathRename>>, abi: ContractAbi, ) -> Self
pub fn new_with_default_path(abi: ContractAbi) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProxyConfig
impl RefUnwindSafe for ProxyConfig
impl Send for ProxyConfig
impl Sync for ProxyConfig
impl Unpin for ProxyConfig
impl UnwindSafe for ProxyConfig
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