pub struct ContextDecl {
pub name: String,
pub environment: String,
pub secrets: Option<HashMap<String, SecretRef>>,
pub variables: Option<HashMap<String, Expression>>,
pub properties: HashMap<String, Expression>,
}
Fields§
§name: String
§environment: String
§secrets: Option<HashMap<String, SecretRef>>
§variables: Option<HashMap<String, Expression>>
§properties: HashMap<String, Expression>
Trait Implementations§
Source§impl Clone for ContextDecl
impl Clone for ContextDecl
Source§fn clone(&self) -> ContextDecl
fn clone(&self) -> ContextDecl
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 ContextDecl
impl RefUnwindSafe for ContextDecl
impl Send for ContextDecl
impl Sync for ContextDecl
impl Unpin for ContextDecl
impl UnwindSafe for ContextDecl
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