pub struct EnvKeyChangeView {
pub key: String,
pub from: Option<String>,
pub to: String,
pub secret: bool,
}Expand description
One env key a reconcile would change in a service’s .env.
Fields§
§key: String§from: Option<String>On-disk value, or None when the key isn’t present yet.
to: String§secret: boolTrue when the key name looks sensitive (a client masks it for display).
Trait Implementations§
Source§impl Clone for EnvKeyChangeView
impl Clone for EnvKeyChangeView
Source§fn clone(&self) -> EnvKeyChangeView
fn clone(&self) -> EnvKeyChangeView
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 EnvKeyChangeView
impl Debug for EnvKeyChangeView
Source§impl<'de> Deserialize<'de> for EnvKeyChangeView
impl<'de> Deserialize<'de> for EnvKeyChangeView
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 EnvKeyChangeView
impl RefUnwindSafe for EnvKeyChangeView
impl Send for EnvKeyChangeView
impl Sync for EnvKeyChangeView
impl Unpin for EnvKeyChangeView
impl UnsafeUnpin for EnvKeyChangeView
impl UnwindSafe for EnvKeyChangeView
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