pub struct Composer<T: CommandExecutor> {
pub compose_command: ComposeCommand,
pub compose_version: Version,
/* private fields */
}Fields§
§compose_command: ComposeCommand§compose_version: VersionImplementations§
Source§impl<T: CommandExecutor> Composer<T>
impl<T: CommandExecutor> Composer<T>
pub async fn try_new( executor: T, config: ComposerConfig, ) -> ComposerResult<Self>
Sourcepub async fn analyze(&mut self) -> ComposerResult<ComposerOutput>
pub async fn analyze(&mut self) -> ComposerResult<ComposerOutput>
Main entry point - analyze docker compose configuration
Auto Trait Implementations§
impl<T> Freeze for Composer<T>where
T: Freeze,
impl<T> RefUnwindSafe for Composer<T>where
T: RefUnwindSafe,
impl<T> Send for Composer<T>where
T: Send,
impl<T> Sync for Composer<T>where
T: Sync,
impl<T> Unpin for Composer<T>where
T: Unpin,
impl<T> UnwindSafe for Composer<T>where
T: UnwindSafe,
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