pub enum ComposeFile {
V2Plus(Compose),
V1(IndexMap<String, Service>),
Single(SingleService),
}Variants§
Trait Implementations§
source§impl Clone for ComposeFile
impl Clone for ComposeFile
source§fn clone(&self) -> ComposeFile
fn clone(&self) -> ComposeFile
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 ComposeFile
impl Debug for ComposeFile
source§impl<'de> Deserialize<'de> for ComposeFile
impl<'de> Deserialize<'de> for ComposeFile
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 PartialEq<ComposeFile> for ComposeFile
impl PartialEq<ComposeFile> for ComposeFile
source§fn eq(&self, other: &ComposeFile) -> bool
fn eq(&self, other: &ComposeFile) -> bool
This method tests for
self and other values to be equal, and is used
by ==.