usesuper::context::{BindgenContext, ItemId}; usesuper::traversal::Trace; use std::fs::File; use std::io::{self, Write}; use std::path::Path;
/// A trait for anything that can write attributes as `<table>` rows to a dot /// file. pub(crate) trait DotAttributes { /// Write this thing's attributes to the given output. Each attribute must /// be its own `<tr>...</tr>`. fn dot_attributes<W>(
&self,
ctx: &BindgenContext,
out: &mut W,
) -> io::Result<()> where
W: io::Write;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.