pub struct ResolvedLanguage {
pub key: String,
pub name: String,
pub source_file: String,
pub compile_cmd: Option<Vec<String>>,
pub run_cmd: Vec<String>,
pub is_rust: bool,
}Fields§
§key: String§name: String§source_file: String§compile_cmd: Option<Vec<String>>§run_cmd: Vec<String>§is_rust: boolTrait Implementations§
Source§impl Clone for ResolvedLanguage
impl Clone for ResolvedLanguage
Source§fn clone(&self) -> ResolvedLanguage
fn clone(&self) -> ResolvedLanguage
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 moreAuto Trait Implementations§
impl Freeze for ResolvedLanguage
impl RefUnwindSafe for ResolvedLanguage
impl Send for ResolvedLanguage
impl Sync for ResolvedLanguage
impl Unpin for ResolvedLanguage
impl UnsafeUnpin for ResolvedLanguage
impl UnwindSafe for ResolvedLanguage
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