pub struct SolutionStackDescription {
pub permitted_file_types: Option<Vec<String>>,
pub solution_stack_name: Option<String>,
}
Expand description
Describes the solution stack.
Fields§
§permitted_file_types: Option<Vec<String>>
The permitted file types allowed for a solution stack.
solution_stack_name: Option<String>
The name of the solution stack.
Trait Implementations§
Source§impl Clone for SolutionStackDescription
impl Clone for SolutionStackDescription
Source§fn clone(&self) -> SolutionStackDescription
fn clone(&self) -> SolutionStackDescription
Returns a duplicate 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 SolutionStackDescription
impl Debug for SolutionStackDescription
Source§impl Default for SolutionStackDescription
impl Default for SolutionStackDescription
Source§fn default() -> SolutionStackDescription
fn default() -> SolutionStackDescription
Returns the “default value” for a type. Read more
Source§impl PartialEq for SolutionStackDescription
impl PartialEq for SolutionStackDescription
impl StructuralPartialEq for SolutionStackDescription
Auto Trait Implementations§
impl Freeze for SolutionStackDescription
impl RefUnwindSafe for SolutionStackDescription
impl Send for SolutionStackDescription
impl Sync for SolutionStackDescription
impl Unpin for SolutionStackDescription
impl UnwindSafe for SolutionStackDescription
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