pub trait CustomScopeThings {
    // Required methods
    fn writeln(&mut self, line: impl Display);
    fn add_generation_timestamp_comment(&mut self);
}

Required Methods§

source

fn writeln(&mut self, line: impl Display)

source

fn add_generation_timestamp_comment(&mut self)

Implementations on Foreign Types§

source§

impl CustomScopeThings for Scope

source§

fn writeln(&mut self, line: impl Display)

Writes a raw string to the scope but doesn’t forget to add the newline this time.

source§

fn add_generation_timestamp_comment(&mut self)

Implementors§