[−][src]Struct flowrlib::coordinator::Submission
A Submission is the struct used to send a flow to the Coordinator for execution. It contains all the information necessary to execute it:
A new Submission is created supplying:
- the manifest of the flow to execute
- the maximum number of jobs you want dispatched/executing in parallel
- whether to display some execution metrics when the flow completes
- an optional DebugClient to allow you to debug the execution
Fields
max_parallel_jobs: usizejob_timeout: Durationdebug: boolImplementations
impl Submission[src]
pub fn new(
manifest_url: &str,
max_parallel_jobs: usize,
#[cfg(feature = "debugger")]
debug: bool
) -> Submission[src]
manifest_url: &str,
max_parallel_jobs: usize,
#[cfg(feature = "debugger")] debug: bool
) -> Submission
Create a new Submission of a Flow for execution with the specified Manifest
of Functions, executing it with a maximum of mac_parallel_jobs running in parallel
connecting via the optional DebugClient
Trait Implementations
impl Debug for Submission[src]
impl<'de> Deserialize<'de> for Submission[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Submission> for Submission[src]
pub fn eq(&self, other: &Submission) -> bool[src]
pub fn ne(&self, other: &Submission) -> bool[src]
impl Serialize for Submission[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Submission[src]
Auto Trait Implementations
impl RefUnwindSafe for Submission[src]
impl Send for Submission[src]
impl Sync for Submission[src]
impl Unpin for Submission[src]
impl UnwindSafe for Submission[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,