pub struct BundleEntry {
pub workflow: String,
pub input: Value,
}Expand description
One slot in a heterogeneous bundle submission.
Fields§
§workflow: StringSub-workflow name (must resolve via the registry).
input: ValuePer-sub input. Platform-level _fabric_* keys are injected by
the engine; only domain inputs go here.
Trait Implementations§
Source§impl Clone for BundleEntry
impl Clone for BundleEntry
Source§fn clone(&self) -> BundleEntry
fn clone(&self) -> BundleEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BundleEntry
impl Debug for BundleEntry
Source§impl<'de> Deserialize<'de> for BundleEntry
impl<'de> Deserialize<'de> for BundleEntry
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 Freeze for BundleEntry
impl RefUnwindSafe for BundleEntry
impl Send for BundleEntry
impl Sync for BundleEntry
impl Unpin for BundleEntry
impl UnsafeUnpin for BundleEntry
impl UnwindSafe for BundleEntry
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