pub struct AId<T> { /* private fields */ }Trait Implementations§
Source§impl Print for AId<Node>
impl Print for AId<Node>
Source§fn print_html_fragment(
&self,
out: &mut impl Write,
allocator: &HtmlAllocator,
) -> Result<()>
fn print_html_fragment( &self, out: &mut impl Write, allocator: &HtmlAllocator, ) -> Result<()>
Print serialized HTML.
Source§fn print_plain(&self, out: &mut String, allocator: &HtmlAllocator) -> Result<()>
fn print_plain(&self, out: &mut String, allocator: &HtmlAllocator) -> Result<()>
Print plain text, completely ignoring HTML markup. Can
currently only give an error if encountering preserialized
HTML.
fn to_html_fragment_string(&self, allocator: &HtmlAllocator) -> Result<String>
fn to_plain_string(&self, allocator: &HtmlAllocator) -> Result<String>
impl<T> Copy for AId<T>
Auto Trait Implementations§
impl<T> Freeze for AId<T>
impl<T> RefUnwindSafe for AId<T>
impl<T> Send for AId<T>
impl<T> Sync for AId<T>
impl<T> Unpin for AId<T>
impl<T> UnwindSafe for AId<T>
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