pub trait DiscriminationExtension {
    // Required methods
    fn into_prefix(self) -> String;
    fn from_testing_bool(testing: bool) -> Self;
    fn from_prefix(prefix: &str) -> Self;
}

Required Methods§

source

fn into_prefix(self) -> String

source

fn from_testing_bool(testing: bool) -> Self

source

fn from_prefix(prefix: &str) -> Self

Implementations on Foreign Types§

source§

impl DiscriminationExtension for Discrimination

Implementors§