Trait r::callable::core::Format

source ·
pub trait Format {
    // Provided methods
    fn rfmt_infix(s: &str, args: &ExprList) -> String
       where Self: Sized { ... }
    fn rfmt_infix_with(s: &str, _state: FormatState, args: &ExprList) -> String
       where Self: Sized { ... }
    fn rfmt(&self) -> String { ... }
    fn rfmt_with(&self, _state: FormatState) -> String { ... }
    fn rfmt_call(&self, args: &ExprList) -> String { ... }
    fn rfmt_call_with(&self, _state: FormatState, _args: &ExprList) -> String { ... }
}

Provided Methods§

source

fn rfmt_infix(s: &str, args: &ExprList) -> String
where Self: Sized,

source

fn rfmt_infix_with(s: &str, _state: FormatState, args: &ExprList) -> String
where Self: Sized,

source

fn rfmt(&self) -> String

source

fn rfmt_with(&self, _state: FormatState) -> String

source

fn rfmt_call(&self, args: &ExprList) -> String

source

fn rfmt_call_with(&self, _state: FormatState, _args: &ExprList) -> String

Implementations on Foreign Types§

source§

impl Format for String

source§

fn rfmt_call_with(&self, _state: FormatState, args: &ExprList) -> String

Implementors§