Struct rustc::hir::print::State
[−]
[src]
pub struct State<'a> { pub s: Printer<'a>, // some fields omitted }
Unstable (
rustc_private
)Fields
s: Printer<'a>
Unstable (
rustc_private
)Methods
impl<'a> State<'a>
[src]
fn new_from_input(cm: &'a CodeMap, span_diagnostic: &Handler, filename: String, input: &mut Read, out: Box<Write + 'a>, ann: &'a PpAnn, is_expanded: bool, krate: Option<&'a Crate>) -> State<'a>
fn new(cm: &'a CodeMap, out: Box<Write + 'a>, ann: &'a PpAnn, comments: Option<Vec<Comment>>, literals: Option<Vec<Literal>>, krate: Option<&'a Crate>) -> State<'a>
impl<'a> State<'a>
[src]
fn cbox(&mut self, u: usize) -> Result<()>
fn nbsp(&mut self) -> Result<()>
fn word_nbsp(&mut self, w: &str) -> Result<()>
fn head(&mut self, w: &str) -> Result<()>
fn bopen(&mut self) -> Result<()>
fn bclose_(&mut self, span: Span, indented: usize) -> Result<()>
fn bclose_maybe_open(&mut self, span: Span, indented: usize, close_box: bool) -> Result<()>
fn bclose(&mut self, span: Span) -> Result<()>
fn in_cbox(&self) -> bool
fn space_if_not_bol(&mut self) -> Result<()>
fn break_offset_if_not_bol(&mut self, n: usize, off: isize) -> Result<()>
fn synth_comment(&mut self, text: String) -> Result<()>
fn commasep_cmnt<T, F, G>(&mut self, b: Breaks, elts: &[T], op: F, get_span: G) -> Result<()> where F: FnMut(&mut State, &T) -> Result<()>, G: FnMut(&T) -> Span
fn commasep_exprs(&mut self, b: Breaks, exprs: &[P<Expr>]) -> Result<()>
fn print_mod(&mut self, _mod: &Mod, attrs: &[Attribute]) -> Result<()>
fn print_foreign_mod(&mut self, nmod: &ForeignMod, attrs: &[Attribute]) -> Result<()>
fn print_opt_lifetime(&mut self, lifetime: &Option<Lifetime>) -> Result<()>
fn print_type(&mut self, ty: &Ty) -> Result<()>
fn print_foreign_item(&mut self, item: &ForeignItem) -> Result<()>
fn print_item_id(&mut self, item_id: &ItemId) -> Result<()>
fn print_item(&mut self, item: &Item) -> Result<()>
Unstable (
rustc_private
)Pretty-print an item