Struct ethers_core::abi::Param
source · pub struct Param {
pub name: String,
pub kind: ParamType,
pub internal_type: Option<String>,
}
Expand description
Function param.
Fields§
§name: String
Param name.
kind: ParamType
Param type.
internal_type: Option<String>
Additional Internal type.
Trait Implementations§
source§impl<'a> Deserialize<'a> for Param
Available on crate feature serde
only.
impl<'a> Deserialize<'a> for Param
Available on crate feature
serde
only.source§fn deserialize<D>(
deserializer: D
) -> Result<Param, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
fn deserialize<D>(
deserializer: D
) -> Result<Param, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for Param
impl PartialEq for Param
source§impl Serialize for Param
Available on crate feature serde
only.
impl Serialize for Param
Available on crate feature
serde
only.source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for Param
Auto Trait Implementations§
impl RefUnwindSafe for Param
impl Send for Param
impl Sync for Param
impl Unpin for Param
impl UnwindSafe for Param
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