pub struct LanguagesConfig {
pub rhai: RhaiEngineConfig,
pub js: JsEngineConfig,
}Expand description
Top-level [languages] section in Camel.toml.
[languages.rhai.limits]
max-operations = 500000
[languages.js.limits]
execution-timeout-ms = 5000Fields§
§rhai: RhaiEngineConfigRhai engine configuration.
js: JsEngineConfigJS (Boa) engine configuration.
Trait Implementations§
Source§impl Clone for LanguagesConfig
impl Clone for LanguagesConfig
Source§fn clone(&self) -> LanguagesConfig
fn clone(&self) -> LanguagesConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LanguagesConfig
impl Debug for LanguagesConfig
Source§impl Default for LanguagesConfig
impl Default for LanguagesConfig
Source§fn default() -> LanguagesConfig
fn default() -> LanguagesConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LanguagesConfig
impl<'de> Deserialize<'de> for LanguagesConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LanguagesConfig
impl PartialEq for LanguagesConfig
Source§fn eq(&self, other: &LanguagesConfig) -> bool
fn eq(&self, other: &LanguagesConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LanguagesConfig
impl Serialize for LanguagesConfig
impl StructuralPartialEq for LanguagesConfig
Auto Trait Implementations§
impl Freeze for LanguagesConfig
impl RefUnwindSafe for LanguagesConfig
impl Send for LanguagesConfig
impl Sync for LanguagesConfig
impl Unpin for LanguagesConfig
impl UnsafeUnpin for LanguagesConfig
impl UnwindSafe for LanguagesConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more