pub struct BootstrapActionConfig {
pub name: String,
pub script_bootstrap_action: ScriptBootstrapActionConfig,
}
Expand description
Configuration of a bootstrap action.
Fields§
§name: String
The name of the bootstrap action.
script_bootstrap_action: ScriptBootstrapActionConfig
The script run by the bootstrap action.
Trait Implementations§
Source§impl Clone for BootstrapActionConfig
impl Clone for BootstrapActionConfig
Source§fn clone(&self) -> BootstrapActionConfig
fn clone(&self) -> BootstrapActionConfig
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 BootstrapActionConfig
impl Debug for BootstrapActionConfig
Source§impl Default for BootstrapActionConfig
impl Default for BootstrapActionConfig
Source§fn default() -> BootstrapActionConfig
fn default() -> BootstrapActionConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BootstrapActionConfig
impl<'de> Deserialize<'de> for BootstrapActionConfig
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 BootstrapActionConfig
impl PartialEq for BootstrapActionConfig
Source§impl Serialize for BootstrapActionConfig
impl Serialize for BootstrapActionConfig
impl StructuralPartialEq for BootstrapActionConfig
Auto Trait Implementations§
impl Freeze for BootstrapActionConfig
impl RefUnwindSafe for BootstrapActionConfig
impl Send for BootstrapActionConfig
impl Sync for BootstrapActionConfig
impl Unpin for BootstrapActionConfig
impl UnwindSafe for BootstrapActionConfig
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