pub(super) struct NestedEntryPointArgs {
pub user_args: Vec<String>,
pub task_payload: Option<String>,
pub local_invocation_index: String,
}Expand description
Argument list for nested entry points
Fields§
§user_args: Vec<String>Arguments literally declared by the user
task_payload: Option<String>§local_invocation_index: StringImplementations§
Source§impl NestedEntryPointArgs
impl NestedEntryPointArgs
pub fn write_call_args(&self, out: &mut impl Write) -> Result
Auto Trait Implementations§
impl Freeze for NestedEntryPointArgs
impl RefUnwindSafe for NestedEntryPointArgs
impl Send for NestedEntryPointArgs
impl Sync for NestedEntryPointArgs
impl Unpin for NestedEntryPointArgs
impl UnwindSafe for NestedEntryPointArgs
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