pub enum DockerLayerType {
Base,
TechStack,
Agent,
Project,
}Expand description
Represents the different types of Docker layers
Variants§
Base
Base OS and essential development tools
TechStack
Technology stack (e.g., rust, python, node)
Agent
AI agent setup (e.g., claude, aider)
Project
Project-specific configuration
Trait Implementations§
Source§impl Clone for DockerLayerType
impl Clone for DockerLayerType
Source§fn clone(&self) -> DockerLayerType
fn clone(&self) -> DockerLayerType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DockerLayerType
impl Debug for DockerLayerType
Source§impl<'de> Deserialize<'de> for DockerLayerType
impl<'de> Deserialize<'de> for DockerLayerType
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
Source§impl Display for DockerLayerType
impl Display for DockerLayerType
Source§impl Hash for DockerLayerType
impl Hash for DockerLayerType
Source§impl PartialEq for DockerLayerType
impl PartialEq for DockerLayerType
Source§impl Serialize for DockerLayerType
impl Serialize for DockerLayerType
impl Eq for DockerLayerType
impl StructuralPartialEq for DockerLayerType
Auto Trait Implementations§
impl Freeze for DockerLayerType
impl RefUnwindSafe for DockerLayerType
impl Send for DockerLayerType
impl Sync for DockerLayerType
impl Unpin for DockerLayerType
impl UnwindSafe for DockerLayerType
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