pub struct Builder { /* private fields */ }
Expand description
A builder for SolutionStackDescription
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn solution_stack_name(self, input: impl Into<String>) -> Self
pub fn solution_stack_name(self, input: impl Into<String>) -> Self
The name of the solution stack.
sourcepub fn set_solution_stack_name(self, input: Option<String>) -> Self
pub fn set_solution_stack_name(self, input: Option<String>) -> Self
The name of the solution stack.
sourcepub fn permitted_file_types(self, input: impl Into<String>) -> Self
pub fn permitted_file_types(self, input: impl Into<String>) -> Self
Appends an item to permitted_file_types
.
To override the contents of this collection use set_permitted_file_types
.
The permitted file types allowed for a solution stack.
sourcepub fn set_permitted_file_types(self, input: Option<Vec<String>>) -> Self
pub fn set_permitted_file_types(self, input: Option<Vec<String>>) -> Self
The permitted file types allowed for a solution stack.
sourcepub fn build(self) -> SolutionStackDescription
pub fn build(self) -> SolutionStackDescription
Consumes the builder and constructs a SolutionStackDescription
.