pub struct JsEngineConfig {
pub limits: JsLimitsConfig,
}Expand description
JS (Boa) engine configuration block in Camel.toml.
Fields§
§limits: JsLimitsConfigResource limits for the Boa JS engine.
Trait Implementations§
Source§impl Clone for JsEngineConfig
impl Clone for JsEngineConfig
Source§fn clone(&self) -> JsEngineConfig
fn clone(&self) -> JsEngineConfig
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 JsEngineConfig
impl Debug for JsEngineConfig
Source§impl Default for JsEngineConfig
impl Default for JsEngineConfig
Source§fn default() -> JsEngineConfig
fn default() -> JsEngineConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JsEngineConfig
impl<'de> Deserialize<'de> for JsEngineConfig
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 JsEngineConfig
impl PartialEq for JsEngineConfig
Source§fn eq(&self, other: &JsEngineConfig) -> bool
fn eq(&self, other: &JsEngineConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JsEngineConfig
impl Serialize for JsEngineConfig
impl StructuralPartialEq for JsEngineConfig
Auto Trait Implementations§
impl Freeze for JsEngineConfig
impl RefUnwindSafe for JsEngineConfig
impl Send for JsEngineConfig
impl Sync for JsEngineConfig
impl Unpin for JsEngineConfig
impl UnsafeUnpin for JsEngineConfig
impl UnwindSafe for JsEngineConfig
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