#[non_exhaustive]pub struct SolutionStackDescription {
pub solution_stack_name: Option<String>,
pub permitted_file_types: Option<Vec<String>>,
}
Expand description
Describes the solution stack.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.solution_stack_name: Option<String>
The name of the solution stack.
permitted_file_types: Option<Vec<String>>
The permitted file types allowed for a solution stack.
Implementations§
source§impl SolutionStackDescription
impl SolutionStackDescription
sourcepub fn solution_stack_name(&self) -> Option<&str>
pub fn solution_stack_name(&self) -> Option<&str>
The name of the solution stack.
sourcepub fn permitted_file_types(&self) -> Option<&[String]>
pub fn permitted_file_types(&self) -> Option<&[String]>
The permitted file types allowed for a solution stack.
source§impl SolutionStackDescription
impl SolutionStackDescription
sourcepub fn builder() -> SolutionStackDescriptionBuilder
pub fn builder() -> SolutionStackDescriptionBuilder
Creates a new builder-style object to manufacture SolutionStackDescription
.
Trait Implementations§
source§impl Clone for SolutionStackDescription
impl Clone for SolutionStackDescription
source§fn clone(&self) -> SolutionStackDescription
fn clone(&self) -> SolutionStackDescription
Returns a copy 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 PartialEq<SolutionStackDescription> for SolutionStackDescription
impl PartialEq<SolutionStackDescription> for SolutionStackDescription
source§fn eq(&self, other: &SolutionStackDescription) -> bool
fn eq(&self, other: &SolutionStackDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SolutionStackDescription
Auto Trait Implementations§
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