pub struct Eip712TypeField {
pub name: String,
pub ty: String,
}Expand description
A single field within an EIP-712 type definition.
Fields§
§name: StringField name
ty: StringSolidity type string (e.g. “address”, “uint256”, “MyStruct”)
Trait Implementations§
Source§impl Clone for Eip712TypeField
impl Clone for Eip712TypeField
Source§fn clone(&self) -> Eip712TypeField
fn clone(&self) -> Eip712TypeField
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Eip712TypeField
impl Debug for Eip712TypeField
Source§impl<'de> Deserialize<'de> for Eip712TypeField
impl<'de> Deserialize<'de> for Eip712TypeField
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 PartialEq for Eip712TypeField
impl PartialEq for Eip712TypeField
Source§impl Serialize for Eip712TypeField
impl Serialize for Eip712TypeField
impl StructuralPartialEq for Eip712TypeField
Auto Trait Implementations§
impl Freeze for Eip712TypeField
impl RefUnwindSafe for Eip712TypeField
impl Send for Eip712TypeField
impl Sync for Eip712TypeField
impl Unpin for Eip712TypeField
impl UnsafeUnpin for Eip712TypeField
impl UnwindSafe for Eip712TypeField
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more