Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions buffa-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,10 @@ impl Config {
/// `buffa-descriptor`-dependent (and `std`-requiring) reflection surface to
/// be opt-in. `buffa-types` is the motivating case.
///
/// **Experimental and `#[doc(hidden)]`**, paired with
/// [`generate_reflection_vtable`](Self::generate_reflection_vtable) until the
/// public `ReflectMode` selector lands.
/// **Experimental and `#[doc(hidden)]`.** This knob only controls the
/// crate-feature gate on the emitted reflection impls; the reflection
/// codegen mode itself is selected via the public
/// [`reflect_mode`](Self::reflect_mode) selector.
#[doc(hidden)]
#[must_use]
pub fn gate_reflect_on_crate_feature(mut self, enabled: bool) -> Self {
Expand Down
2 changes: 1 addition & 1 deletion buffa-codegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ pub struct CodeGenConfig {
/// A low-level knob for crates whose generated code is a public interface
/// (`buffa-types`, the conformance harness). Set directly by `gen_wkt_types`
/// and exposed through `buffa_build::Config::gate_reflect_on_crate_feature`
/// (currently `#[doc(hidden)]`, paired with the experimental vtable flag).
/// (currently `#[doc(hidden)]`).
///
/// Defaults to `false`.
pub gate_reflect_on_crate_feature: bool,
Expand Down
Loading