pub struct ChainFeature {
pub name: String,
}Expand description
A feature supported by a chain (e.g. EIP155, EIP1559).
Fields§
§name: StringThe feature name.
Trait Implementations§
Source§impl Clone for ChainFeature
impl Clone for ChainFeature
Source§fn clone(&self) -> ChainFeature
fn clone(&self) -> ChainFeature
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChainFeature
impl Debug for ChainFeature
Source§impl<'de> Deserialize<'de> for ChainFeature
impl<'de> Deserialize<'de> for ChainFeature
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
Auto Trait Implementations§
impl Freeze for ChainFeature
impl RefUnwindSafe for ChainFeature
impl Send for ChainFeature
impl Sync for ChainFeature
impl Unpin for ChainFeature
impl UnsafeUnpin for ChainFeature
impl UnwindSafe for ChainFeature
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