pub enum JobSource {
Items(Vec<JobItem>),
Connector(String),
}Expand description
Where a job reads its input from.
Variants§
Items(Vec<JobItem>)
Items carried in the request body.
Connector(String)
A scheme://connection/... URI naming a data store.
Implementations§
Trait Implementations§
impl StructuralPartialEq for JobSource
Auto Trait Implementations§
impl Freeze for JobSource
impl RefUnwindSafe for JobSource
impl Send for JobSource
impl Sync for JobSource
impl Unpin for JobSource
impl UnsafeUnpin for JobSource
impl UnwindSafe for JobSource
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