pub struct ChainExplorer {
pub name: String,
pub url: String,
pub standard: String,
}Expand description
A block explorer for a chain.
Fields§
§name: StringThe explorer name.
url: StringThe explorer base URL.
standard: StringThe standard implemented (e.g. EIP3091).
Trait Implementations§
Source§impl Clone for ChainExplorer
impl Clone for ChainExplorer
Source§fn clone(&self) -> ChainExplorer
fn clone(&self) -> ChainExplorer
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 ChainExplorer
impl Debug for ChainExplorer
Source§impl<'de> Deserialize<'de> for ChainExplorer
impl<'de> Deserialize<'de> for ChainExplorer
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 ChainExplorer
impl RefUnwindSafe for ChainExplorer
impl Send for ChainExplorer
impl Sync for ChainExplorer
impl Unpin for ChainExplorer
impl UnsafeUnpin for ChainExplorer
impl UnwindSafe for ChainExplorer
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