pub struct ComposedTemplate {
pub base_config: TemplateConfig,
pub files: Vec<ComposedFile>,
pub merged_dependencies: HashMap<String, Value>,
pub environment_variables: HashMap<String, String>,
pub service_context: ServiceContext,
}Fields§
§base_config: TemplateConfig§files: Vec<ComposedFile>§merged_dependencies: HashMap<String, Value>§environment_variables: HashMap<String, String>§service_context: ServiceContextTrait Implementations§
Source§impl Clone for ComposedTemplate
impl Clone for ComposedTemplate
Source§fn clone(&self) -> ComposedTemplate
fn clone(&self) -> ComposedTemplate
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 moreAuto Trait Implementations§
impl Freeze for ComposedTemplate
impl RefUnwindSafe for ComposedTemplate
impl Send for ComposedTemplate
impl Sync for ComposedTemplate
impl Unpin for ComposedTemplate
impl UnwindSafe for ComposedTemplate
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