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

fn print_enum_def(&mut self, enum_definition: &EnumDef, generics: &Generics, name: Name, span: Span, visibility: &Visibility) -> Result<()>

fn print_variants(&mut self, variants: &[Variant], span: Span) -> Result<()>

fn print_visibility(&mut self, vis: &Visibility) -> Result<()>

fn print_struct(&mut self, struct_def: &VariantData, generics: &Generics, name: Name, span: Span, print_finalizer: bool) -> Result<()>

fn print_variant(&mut self, v: &Variant) -> Result<()>

fn print_method_sig(&mut self, name: Name, m: &MethodSig, vis: &Visibility) -> Result<()>

fn print_trait_item(&mut self, ti: &TraitItem) -> Result<()>

fn print_impl_item(&mut self, ii: &ImplItem) -> Result<()>

fn print_stmt(&mut self, st: &Stmt) -> Result<()>

fn print_block(&mut self, blk: &Block) -> Result<()>

fn print_block_unclosed(&mut self, blk: &Block) -> Result<()>

fn print_block_unclosed_indent(&mut self, blk: &Block, indented: usize) -> Result<()>

fn print_block_with_attrs(&mut self, blk: &Block, attrs: &[Attribute]) -> Result<()>

fn print_block_maybe_unclosed(&mut self, blk: &Block, indented: usize, attrs: &[Attribute], close_box: bool) -> Result<()>

fn print_if(&mut self, test: &Expr, blk: &Block, elseopt: Option<&Expr>) -> Result<()>

fn print_if_let(&mut self, pat: &Pat, expr: &Expr, blk: &Block, elseopt: Option<&Expr>) -> Result<()>

fn print_expr_maybe_paren(&mut self, expr: &Expr) -> Result<()>

fn print_expr(&mut self, expr: &Expr) -> Result<()>

fn print_local_decl(&mut self, loc: &Local) -> Result<()>

fn print_decl(&mut self, decl: &Decl) -> Result<()>

fn print_usize(&mut self, i: usize) -> Result<()>

fn print_name(&mut self, name: Name) -> Result<()>

fn print_for_decl(&mut self, loc: &Local, coll: &Expr) -> Result<()>

fn print_pat(&mut self, pat: &Pat) -> Result<()>

fn print_fn(&mut self, decl: &FnDecl, unsafety: Unsafety, constness: Constness, abi: Abi, name: Option<Name>, generics: &Generics, vis: &Visibility) -> Result<()>

fn print_fn_args_and_ret(&mut self, decl: &FnDecl) -> Result<()>

fn print_fn_block_args(&mut self, decl: &FnDecl) -> Result<()>

fn print_capture_clause(&mut self, capture_clause: CaptureClause) -> Result<()>

fn print_bounds(&mut self, prefix: &str, bounds: &[TyParamBound]) -> Result<()>

fn print_lifetime(&mut self, lifetime: &Lifetime) -> Result<()>

fn print_lifetime_def(&mut self, lifetime: &LifetimeDef) -> Result<()>

fn print_generics(&mut self, generics: &Generics) -> Result<()>

fn print_ty_param(&mut self, param: &TyParam) -> Result<()>

fn print_where_clause(&mut self, where_clause: &WhereClause) -> Result<()>

fn print_view_path(&mut self, vp: &ViewPath) -> Result<()>

fn print_mutability(&mut self, mutbl: Mutability) -> Result<()>

fn print_mt(&mut self, mt: &MutTy) -> Result<()>

fn print_arg(&mut self, input: &Arg, is_closure: bool) -> Result<()>

fn print_fn_output(&mut self, decl: &FnDecl) -> Result<()>

fn print_ty_fn(&mut self, abi: Abi, unsafety: Unsafety, decl: &FnDecl, name: Option<Name>, generics: &Generics) -> Result<()>

fn maybe_print_trailing_comment(&mut self, span: Span, next_pos: Option<BytePos>) -> Result<()>

fn print_remaining_comments(&mut self) -> Result<()>

fn print_opt_abi_and_extern_if_nondefault(&mut self, opt_abi: Option<Abi>) -> Result<()>

fn print_extern_opt_abi(&mut self, opt_abi: Option<Abi>) -> Result<()>

fn print_fn_header_info(&mut self, unsafety: Unsafety, constness: Constness, abi: Abi, vis: &Visibility) -> Result<()>

fn print_unsafety(&mut self, s: Unsafety) -> Result<()>

Trait Implementations

impl<'a> NodePrinter for State<'a>
[src]

fn print_node(&mut self, node: &Node) -> Result<()>

impl<'a> PrintState<'a> for State<'a>
[src]

fn writer(&mut self) -> &mut Printer<'a>

fn boxes(&mut self) -> &mut Vec<Breaks>

fn comments(&mut self) -> &mut Option<Vec<Comment>>

fn cur_cmnt_and_lit(&mut self) -> &mut CurrentCommentAndLiteral

fn literals(&self) -> &Option<Vec<Literal>>

fn word_space(&mut self, w: &str) -> Result<()Error>

fn popen(&mut self) -> Result<()Error>

fn pclose(&mut self) -> Result<()Error>

fn is_begin(&mut self) -> bool

fn is_end(&mut self) -> bool

fn is_bol(&mut self) -> bool

fn hardbreak_if_not_bol(&mut self) -> Result<()Error>

fn rbox(&mut self, u: usize, b: Breaks) -> Result<()Error>

fn ibox(&mut self, u: usize) -> Result<()Error>

fn end(&mut self) -> Result<()Error>

fn commasep<T, F>(&mut self, b: Breaks, elts: &[T], op: F) -> Result<()Error> where F: FnMut(&mut Self, &T) -> Result<()Error>

fn next_lit(&mut self, pos: BytePos) -> Option<Literal>

fn maybe_print_comment(&mut self, pos: BytePos) -> Result<()Error>

fn print_comment(&mut self, cmnt: &Comment) -> Result<()Error>

fn next_comment(&mut self) -> Option<Comment>

fn print_literal(&mut self, lit: &Spanned<LitKind>) -> Result<()Error>

fn print_string(&mut self, st: &str, style: StrStyle) -> Result<()Error>

fn print_inner_attributes(&mut self, attrs: &[Spanned<Attribute_>]) -> Result<()Error>

fn print_inner_attributes_no_trailing_hardbreak(&mut self, attrs: &[Spanned<Attribute_>]) -> Result<()Error>

fn print_outer_attributes(&mut self, attrs: &[Spanned<Attribute_>]) -> Result<()Error>

fn print_inner_attributes_inline(&mut self, attrs: &[Spanned<Attribute_>]) -> Result<()Error>

fn print_outer_attributes_inline(&mut self, attrs: &[Spanned<Attribute_>]) -> Result<()Error>

fn print_either_attributes(&mut self, attrs: &[Spanned<Attribute_>], kind: AttrStyle, is_inline: bool, trailing_hardbreak: bool) -> Result<()Error>

fn print_attribute(&mut self, attr: &Spanned<Attribute_>) -> Result<()Error>

fn print_attribute_inline(&mut self, attr: &Spanned<Attribute_>, is_inline: bool) -> Result<()Error>

fn print_meta_item(&mut self, item: &Spanned<MetaItemKind>) -> Result<()Error>

fn space_if_not_bol(&mut self) -> Result<()Error>

fn nbsp(&mut self) -> Result<()Error>