pub trait Code: Copy + Debug + Default + SupportedType {
    const COMMAND_DOC: &'static str;

    // Provided method
    fn default_low_values() -> [Self; 128] { ... }
}

Required Associated Constants§

source

const COMMAND_DOC: &'static str

Provided Methods§

Implementations on Foreign Types§

source§

impl Code for CatCode

source§

const COMMAND_DOC: &'static str = "Get or set a cat code register"

source§

fn default_low_values() -> [Self; 128]

source§

impl Code for MathCode

source§

const COMMAND_DOC: &'static str = "Get or set a math code register"

Implementors§