pub struct KV {
pub name: String,
pub value: String,
}Expand description
Simple Key-Value struct as needed by Concourse for metadata
Fields§
§name: StringThe name of this metadata
value: StringThe value of this metadata
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KV
impl RefUnwindSafe for KV
impl Send for KV
impl Sync for KV
impl Unpin for KV
impl UnwindSafe for KV
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