-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add internal warning to zenoh-config zenoh-keyexpr and zenoh-runtime …
…crates doc
- Loading branch information
1 parent
ad7c872
commit cfae451
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,12 @@ | |
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
//! ⚠️ WARNING ⚠️ | ||
//! | ||
//! This crate is intended for Zenoh's internal use. | ||
//! | ||
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh) | ||
//! | ||
//! Configuration to pass to `zenoh::open()` and `zenoh::scout()` functions and associated constants. | ||
pub mod defaults; | ||
mod include; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,12 @@ | |
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
//! ⚠️ WARNING ⚠️ | ||
//! | ||
//! This crate is intended for Zenoh's internal use. | ||
//! | ||
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh) | ||
//! | ||
//! [Key expression](https://github.com/eclipse-zenoh/roadmap/blob/main/rfcs/ALL/Key%20Expressions.md) are Zenoh's address space. | ||
//! | ||
//! In Zenoh, operations are performed on keys. To allow addressing multiple keys with a single operation, we use Key Expressions (KE). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,12 @@ | |
// Contributors: | ||
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
//! ⚠️ WARNING ⚠️ | ||
//! | ||
//! This crate is intended for Zenoh's internal use. | ||
//! | ||
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh) | ||
use core::panic; | ||
use std::{ | ||
borrow::Borrow, | ||
|