blob: edc718e41791e80f47c5f606c5387deac4910b4b [file] [log] [blame] [view]
# Rust libraries
This document explains what libraries are available for writing and reading Inspect data in Rust.
For specific documentation of each library, refer to the crate documentation linked on each section.
## Libraries for writing inspect
### [`fuchsia-inspect`][fuchsia_inspect]
This is the core library. This library offers the core API for creating nodes, properties,
serving Inspect, etc. Internally it implements the buddy allocation algorithm described in
[Inspect vmo format][inspect_vmo_format].
For an introduction to Inspect concepts and the rust libraries, see the
[codelab][codelab].
### [`fuchsia-inspect-contrib`][fuchsia_inspect_contrib]
This library is intended for contributions to the Inspect library from clients.
These are patterns that clients identify in their usage of Inspect that they can
generalize and share. Its intended to be at a higher level than
`fuchsia-inspect`.
### [`fuchsia-inspect-derive`][fuchsia_inspect_derive]
This library provides a convenient way to manage Inspect data in a Rust program through a
`#[derive(Inspect)]` procedural macro. This works at a higher level than `fuchsia-inspect`.
For more information on this library, see [Ergonomic Inspect][ergonomic_inspect].
## Libraries for reading Inspect
These libraries are not specific to Inspect and are used for various kinds of diagnostics data.
### [`diagnostics-hierarchy`][diagnostics_hierarchy]
This library includes the convenient macro `assert_inspect_tree` for testing as well as the
definition of the `DiagnosticsHierarchy`, which is not exclusive to Inspect and
is also used for logs and other diagnostics data sources.
### [`diagnostics-testing`][diagnostics_testing]
This library includes the convenient `EnvForDiagnostics` which is useful for testing Inspect
integration in Components v1.
### [`diagnostics-reader`][diagnostics_reader]
This library includes the convenient `ArchiveReader` which is useful for fetching Inspect
data from an archivist in a test or in production. It wraps the shared logic of
connecting to the `ArchiveAccessor` and fetching data from it.
[codelab]: /docs/development/diagnostics/inspect/codelab/codelab.md#rust
[ergonomic_inspect]: /docs/development/languages/rust/ergonomic_inspect.md
[inspect_vmo_format]: /docs/reference/diagnostics/inspect/vmo-format.md
[fuchsia_inspect_derive]: https://fuchsia-docs.firebaseapp.com/rust/fuchsia_inspect_derive/index.html
[fuchsia_inspect]: https://fuchsia-docs.firebaseapp.com/rust/fuchsia_inspect/index.html
[fuchsia_inspect_contrib]: https://fuchsia-docs.firebaseapp.com/rust/fuchsia_inspect_contrib/index.html
[diagnostics_hierarchy]: https://fuchsia-docs.firebaseapp.com/rust/diagnostics_hierarchy/index.html
[diagnostics_reader]: https://fuchsia-docs.firebaseapp.com/rust/diagnostics_reader/index.html
[diagnostics_testing]: https://fuchsia-docs.firebaseapp.com/rust/diagnostics_testing/index.html