pub struct BaseConfigParam {
pub enabled: bool,
pub features: Option<Value>,
}
Fields§
§enabled: bool
Whether the embedded component is enabled.
features: Option<Value>
An empty list, because this embedded component has no features.
Implementations§
Trait Implementations§
Source§impl Clone for BaseConfigParam
impl Clone for BaseConfigParam
Source§fn clone(&self) -> BaseConfigParam
fn clone(&self) -> BaseConfigParam
Returns a duplicate of the value. Read more
1.0.0 · 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 BaseConfigParam
impl Debug for BaseConfigParam
Auto Trait Implementations§
impl Freeze for BaseConfigParam
impl RefUnwindSafe for BaseConfigParam
impl Send for BaseConfigParam
impl Sync for BaseConfigParam
impl Unpin for BaseConfigParam
impl UnwindSafe for BaseConfigParam
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