Skip to main content

kstring/
lib.rs

1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![no_std]
6
7pub mod interned_category;
8pub mod interned_string;
9
10#[doc(hidden)]
11pub use kstring_macro::import_category;
12#[doc(hidden)]
13pub use kstring_macro::import_string;
14#[doc(hidden)]
15pub use kstring_macro::interned_category_export_name;
16#[doc(hidden)]
17pub use kstring_macro::interned_string_export_name;