Make EngineOptions hidden ()

This commit is contained in:
Przemyslaw Hugh Kaznowski 2024-03-15 11:36:31 +00:00 committed by GitHub
parent f93f4999ed
commit 65d8e6d422
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -37,6 +37,7 @@ pub mod kvs;
#[cfg(any(feature = "ml", feature = "ml2"))]
#[doc(hidden)]
pub mod obs;
#[doc(hidden)]
pub mod options;
#[doc(hidden)]
pub mod syn;

View file

@ -1,6 +1,7 @@
/// Configuration for the engine behaviour
/// The defaults are optimal so please only modify these if you know deliberately why you are modifying them.
#[derive(Clone, Copy, Debug)]
#[doc(hidden)]
pub struct EngineOptions {
/// The maximum number of live queries that can be created in a single transaction
pub new_live_queries_per_transaction: u32,