pub struct Stack {
pub frontend: Option<String>,
pub backend: Option<String>,
pub database: Option<String>,
pub infrastructure: Option<String>,
pub build_tool: Option<String>,
pub testing: Option<String>,
pub cicd: Option<String>,
}Expand description
Technical stack
Fields§
§frontend: Option<String>§backend: Option<String>§database: Option<String>§infrastructure: Option<String>§build_tool: Option<String>§testing: Option<String>§cicd: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stack
impl<'de> Deserialize<'de> for Stack
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
Auto Trait Implementations§
impl Freeze for Stack
impl RefUnwindSafe for Stack
impl Send for Stack
impl Sync for Stack
impl Unpin for Stack
impl UnsafeUnpin for Stack
impl UnwindSafe for Stack
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