Struct org_rust_exporter::html::Html
source · pub struct Html<'buf> { /* private fields */ }Trait Implementations§
source§impl<'buf> Exporter<'buf> for Html<'buf>
impl<'buf> Exporter<'buf> for Html<'buf>
source§fn export(input: &str) -> Result<String, Error>
fn export(input: &str) -> Result<String, Error>
Writes the AST generated from the input into a
String.source§fn export_buf<'inp, T: Write>(
input: &'inp str,
buf: &'buf mut T
) -> Result<&'buf mut T, Error>
fn export_buf<'inp, T: Write>( input: &'inp str, buf: &'buf mut T ) -> Result<&'buf mut T, Error>
Writes the AST generated from the input into a buffer that implements
Write.source§fn export_macro_buf<'inp, T: Write>(
input: &'inp str,
buf: &'buf mut T
) -> Result<&'buf mut T, Error>
fn export_macro_buf<'inp, T: Write>( input: &'inp str, buf: &'buf mut T ) -> Result<&'buf mut T, Error>
Entry point of the exporter to handle macros. Read more
Auto Trait Implementations§
impl<'buf> !RefUnwindSafe for Html<'buf>
impl<'buf> !Send for Html<'buf>
impl<'buf> !Sync for Html<'buf>
impl<'buf> Unpin for Html<'buf>
impl<'buf> !UnwindSafe for Html<'buf>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more