referrerpolicy=no-referrer-when-downgrade
pub trait IdentifyVariant {
    // Required method
    fn is_test(&self) -> bool;
}
Expand description

Can be called for a Configuration to check if it is a configuration for the Test network.

Required Methods§

source

fn is_test(&self) -> bool

Returns if this is a configuration for the Test network.

Implementations on Foreign Types§

source§

impl IdentifyVariant for Box<dyn ChainSpec>

source§

fn is_test(&self) -> bool

Implementors§