pub struct ProjectConfiguration {
pub project_type: Option<String>,
pub root: Option<String>,
pub entry_file: Option<String>,
pub exec: Option<String>,
pub source_root: Option<String>,
pub compiler_options: Option<CompilerOptions>,
pub generate_options: Option<GenerateOptions>,
pub extra: BTreeMap<String, Value>,
}Fields§
§project_type: Option<String>§root: Option<String>§entry_file: Option<String>§exec: Option<String>§source_root: Option<String>§compiler_options: Option<CompilerOptions>§generate_options: Option<GenerateOptions>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for ProjectConfiguration
impl Clone for ProjectConfiguration
Source§fn clone(&self) -> ProjectConfiguration
fn clone(&self) -> ProjectConfiguration
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 moreSource§impl Debug for ProjectConfiguration
impl Debug for ProjectConfiguration
Source§impl Default for ProjectConfiguration
impl Default for ProjectConfiguration
Source§fn default() -> ProjectConfiguration
fn default() -> ProjectConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectConfiguration
impl<'de> Deserialize<'de> for ProjectConfiguration
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 ProjectConfiguration
impl PartialEq for ProjectConfiguration
Source§fn eq(&self, other: &ProjectConfiguration) -> bool
fn eq(&self, other: &ProjectConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectConfiguration
impl Serialize for ProjectConfiguration
impl Eq for ProjectConfiguration
impl StructuralPartialEq for ProjectConfiguration
Auto Trait Implementations§
impl Freeze for ProjectConfiguration
impl RefUnwindSafe for ProjectConfiguration
impl Send for ProjectConfiguration
impl Sync for ProjectConfiguration
impl Unpin for ProjectConfiguration
impl UnsafeUnpin for ProjectConfiguration
impl UnwindSafe for ProjectConfiguration
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.