pub enum InitTemplate {
AspNetCore,
Go,
Java,
Node,
Php,
Python,
Rust,
Other,
}
Expand description
Available template types for Docker init
Variants§
AspNetCore
ASP.NET Core application
Go
Go application
Java
Java application
Node
Node.js application
Php
PHP with Apache application
Python
Python application
Rust
Rust application
Other
General purpose / other
Trait Implementations§
Source§impl Clone for InitTemplate
impl Clone for InitTemplate
Source§fn clone(&self) -> InitTemplate
fn clone(&self) -> InitTemplate
Returns a duplicate 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 InitTemplate
impl Debug for InitTemplate
Source§impl Display for InitTemplate
impl Display for InitTemplate
Source§impl PartialEq for InitTemplate
impl PartialEq for InitTemplate
impl StructuralPartialEq for InitTemplate
Auto Trait Implementations§
impl Freeze for InitTemplate
impl RefUnwindSafe for InitTemplate
impl Send for InitTemplate
impl Sync for InitTemplate
impl Unpin for InitTemplate
impl UnwindSafe for InitTemplate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.