pub struct ExampleProject {
pub environments: Vec<ExampleEnvironment>,
}Expand description
Represents the example project element
Groups the tool-specific environment entries for this example.
Fields§
§environments: Vec<ExampleEnvironment>Tool environment entries (1..*)
Trait Implementations§
Source§impl Clone for ExampleProject
impl Clone for ExampleProject
Source§fn clone(&self) -> ExampleProject
fn clone(&self) -> ExampleProject
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 ExampleProject
impl Debug for ExampleProject
Source§impl Default for ExampleProject
impl Default for ExampleProject
Source§fn default() -> ExampleProject
fn default() -> ExampleProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExampleProject
impl<'de> Deserialize<'de> for ExampleProject
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
impl Eq for ExampleProject
Source§impl PartialEq for ExampleProject
impl PartialEq for ExampleProject
Source§impl Serialize for ExampleProject
impl Serialize for ExampleProject
impl StructuralPartialEq for ExampleProject
Auto Trait Implementations§
impl Freeze for ExampleProject
impl RefUnwindSafe for ExampleProject
impl Send for ExampleProject
impl Sync for ExampleProject
impl Unpin for ExampleProject
impl UnsafeUnpin for ExampleProject
impl UnwindSafe for ExampleProject
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