pub struct TargetEnvironment {
pub kubectl_context: String,
pub cloud_project: String,
pub terragrunt_root: PathBuf,
}Expand description
The target environment a vitrine PR is delivered to.
Fields§
§kubectl_context: Stringkubectl context name for the cluster receiving the change.
cloud_project: StringCloud provider project / subscription / account ID.
terragrunt_root: PathBufPath to the terragrunt root that owns the target’s IaC.
Trait Implementations§
Source§impl Clone for TargetEnvironment
impl Clone for TargetEnvironment
Source§fn clone(&self) -> TargetEnvironment
fn clone(&self) -> TargetEnvironment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetEnvironment
impl Debug for TargetEnvironment
Source§impl<'de> Deserialize<'de> for TargetEnvironment
impl<'de> Deserialize<'de> for TargetEnvironment
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
Auto Trait Implementations§
impl Freeze for TargetEnvironment
impl RefUnwindSafe for TargetEnvironment
impl Send for TargetEnvironment
impl Sync for TargetEnvironment
impl Unpin for TargetEnvironment
impl UnsafeUnpin for TargetEnvironment
impl UnwindSafe for TargetEnvironment
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