pub struct Proposal {
pub var: String,
pub coordinate: String,
}Expand description
A single proposed mapping: an env var → a kovra coordinate.
Fields§
§var: StringThe environment variable name as written in source (e.g. DATABASE_URL).
coordinate: StringThe proposed coordinate, secret:${ENV}/<component>/<key>.
Trait Implementations§
impl Eq for Proposal
impl StructuralPartialEq for Proposal
Auto Trait Implementations§
impl Freeze for Proposal
impl RefUnwindSafe for Proposal
impl Send for Proposal
impl Sync for Proposal
impl Unpin for Proposal
impl UnsafeUnpin for Proposal
impl UnwindSafe for Proposal
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