1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: Apache-2.0 //! SCIP-aligned symbol identity: descriptors and `SymbolId`. pub mod descriptor; pub mod id; #[cfg(feature = "serde")] mod serde_impl; pub use descriptor::{Descriptor, MethodDisambiguator}; pub use id::{Package, SCHEME, SymbolId, SymbolIdWire, SymbolIdWireError, SymbolParseError};