pub struct InInput<S, V, P> {
pub source: Option<S>,
pub version: V,
pub params: Option<P>,
}
Expand description
Input of the “in” step of the resource
Fields§
§source: Option<S>
Resource configuration, from the source
field
version: V
Version to retrieve
params: Option<P>
Step configuration, from the params
field
Trait Implementations§
Source§impl<'de, S, V, P> Deserialize<'de> for InInput<S, V, P>
impl<'de, S, V, P> Deserialize<'de> for InInput<S, V, P>
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<S, V, P> Freeze for InInput<S, V, P>
impl<S, V, P> RefUnwindSafe for InInput<S, V, P>
impl<S, V, P> Send for InInput<S, V, P>
impl<S, V, P> Sync for InInput<S, V, P>
impl<S, V, P> Unpin for InInput<S, V, P>
impl<S, V, P> UnwindSafe for InInput<S, V, P>
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