pub struct InOutputKV<V> {
pub version: V,
pub metadata: Option<Vec<KV>>,
}Expand description
Output of the “in” step of the resource
Fields§
§version: VThe fetched version.
metadata: Option<Vec<KV>>A list of key-value pairs. This data is intended for public consumption and will make it upstream, intended to be shown on the build’s page.
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for InOutputKV<V>where
V: Freeze,
impl<V> RefUnwindSafe for InOutputKV<V>where
V: RefUnwindSafe,
impl<V> Send for InOutputKV<V>where
V: Send,
impl<V> Sync for InOutputKV<V>where
V: Sync,
impl<V> Unpin for InOutputKV<V>where
V: Unpin,
impl<V> UnwindSafe for InOutputKV<V>where
V: UnwindSafe,
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