risingwave_common::system_param

Trait ValidateOnSet

source
trait ValidateOnSet {
Show 17 methods // Provided methods fn barrier_interval_ms(_v: &u32) -> Result<(), SystemParamsError> { ... } fn checkpoint_frequency(_v: &u64) -> Result<(), SystemParamsError> { ... } fn sstable_size_mb(_v: &u32) -> Result<(), SystemParamsError> { ... } fn parallel_compact_size_mb(_v: &u32) -> Result<(), SystemParamsError> { ... } fn block_size_kb(_v: &u32) -> Result<(), SystemParamsError> { ... } fn bloom_false_positive(_v: &f64) -> Result<(), SystemParamsError> { ... } fn state_store(_v: &String) -> Result<(), SystemParamsError> { ... } fn data_directory(_v: &String) -> Result<(), SystemParamsError> { ... } fn backup_storage_url(_v: &String) -> Result<(), SystemParamsError> { ... } fn backup_storage_directory(_v: &String) -> Result<(), SystemParamsError> { ... } fn max_concurrent_creating_streaming_jobs( _v: &u32, ) -> Result<(), SystemParamsError> { ... } fn pause_on_next_bootstrap(_v: &bool) -> Result<(), SystemParamsError> { ... } fn enable_tracing(_v: &bool) -> Result<(), SystemParamsError> { ... } fn use_new_object_prefix_strategy( _v: &bool, ) -> Result<(), SystemParamsError> { ... } fn license_key(_v: &LicenseKey) -> Result<(), SystemParamsError> { ... } fn time_travel_retention_ms(_v: &u64) -> Result<(), SystemParamsError> { ... } fn expect_range<T, R>(v: T, range: R) -> Result<(), SystemParamsError> where T: Debug + PartialOrd, R: RangeBounds<T> + Debug { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§