pub struct Project { /* private fields */ }Expand description
A project within the workspace
Implementations§
Source§impl Project
impl Project
pub fn from_configuration_and_metadata<P>( name: &str, source: (P, ConfigurationFileFormat), configuration: ProjectConfiguration, ) -> Project
pub fn name(&self) -> &str
pub fn root(&self) -> &Path
pub fn configuration_file_path(&self) -> &Path
pub fn configuration_file_format(&self) -> ConfigurationFileFormat
pub fn targets(&self) -> &BTreeMap<String, Target>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Project, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Project, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Project
impl Serialize for Project
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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