pub struct InputAbiJson {
pub arg_name: String,
pub type_name: String,
pub multi_arg: Option<bool>,
}
Fields§
§arg_name: String
§type_name: String
§multi_arg: Option<bool>
Bool that is only serialized when true
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InputAbiJson
impl<'de> Deserialize<'de> for InputAbiJson
Source§fn 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
Source§impl From<&InputAbi> for InputAbiJson
impl From<&InputAbi> for InputAbiJson
Source§impl From<&InputAbiJson> for InputAbi
impl From<&InputAbiJson> for InputAbi
Source§fn from(abi: &InputAbiJson) -> Self
fn from(abi: &InputAbiJson) -> Self
Converts to this type from the input type.
Source§impl From<InputAbiJson> for InputAbi
impl From<InputAbiJson> for InputAbi
Source§fn from(abi: InputAbiJson) -> Self
fn from(abi: InputAbiJson) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InputAbiJson
impl RefUnwindSafe for InputAbiJson
impl Send for InputAbiJson
impl Sync for InputAbiJson
impl Unpin for InputAbiJson
impl UnwindSafe for InputAbiJson
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