pub struct CompileAndExeSetting {
pub raw_code: String,
pub compile_command: String,
pub exe_command: String,
pub exe_files: Vec<String>,
pub language_info_command: String,
}
Fields§
§raw_code: String
§compile_command: String
§exe_command: String
§exe_files: Vec<String>
§language_info_command: String
Implementations§
Trait Implementations§
Source§impl Clone for CompileAndExeSetting
impl Clone for CompileAndExeSetting
Source§fn clone(&self) -> CompileAndExeSetting
fn clone(&self) -> CompileAndExeSetting
Returns a copy 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 CompileAndExeSetting
impl Debug for CompileAndExeSetting
Source§impl Default for CompileAndExeSetting
impl Default for CompileAndExeSetting
Source§fn default() -> CompileAndExeSetting
fn default() -> CompileAndExeSetting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompileAndExeSetting
impl<'de> Deserialize<'de> for CompileAndExeSetting
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
Auto Trait Implementations§
impl Freeze for CompileAndExeSetting
impl RefUnwindSafe for CompileAndExeSetting
impl Send for CompileAndExeSetting
impl Sync for CompileAndExeSetting
impl Unpin for CompileAndExeSetting
impl UnwindSafe for CompileAndExeSetting
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