pub struct PluginInterpreter {
pub runtime: String,
pub args: Option<Vec<String>>,
pub options: IndexMap<String, InterpreterOption>,
}
Fields§
§runtime: String
§args: Option<Vec<String>>
§options: IndexMap<String, InterpreterOption>
Trait Implementations§
Source§impl Clone for PluginInterpreter
impl Clone for PluginInterpreter
Source§fn clone(&self) -> PluginInterpreter
fn clone(&self) -> PluginInterpreter
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 PluginInterpreter
impl Debug for PluginInterpreter
Source§impl Default for PluginInterpreter
impl Default for PluginInterpreter
Source§fn default() -> PluginInterpreter
fn default() -> PluginInterpreter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginInterpreter
impl<'de> Deserialize<'de> for PluginInterpreter
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 Display for PluginInterpreter
impl Display for PluginInterpreter
Source§impl TryFrom<&PluginInterpreter> for ExecutionConfig
impl TryFrom<&PluginInterpreter> for ExecutionConfig
Source§type Error = DevrcError
type Error = DevrcError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for PluginInterpreter
impl RefUnwindSafe for PluginInterpreter
impl Send for PluginInterpreter
impl Sync for PluginInterpreter
impl Unpin for PluginInterpreter
impl UnwindSafe for PluginInterpreter
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