pub struct InOutput<V, M> {
pub version: V,
pub metadata: Option<M>,
}Expand description
Output of the “in” step of the resource
Fields§
§version: VThe fetched version.
metadata: Option<M>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, M> Freeze for InOutput<V, M>
impl<V, M> RefUnwindSafe for InOutput<V, M>where
V: RefUnwindSafe,
M: RefUnwindSafe,
impl<V, M> Send for InOutput<V, M>
impl<V, M> Sync for InOutput<V, M>
impl<V, M> Unpin for InOutput<V, M>
impl<V, M> UnwindSafe for InOutput<V, M>where
V: UnwindSafe,
M: 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