pub trait AsyncIngestJobService {
// Required method
fn get_ingest_job(
&self,
auth_: BearerToken,
ingest_job_rid: IngestJobRid,
) -> impl Future<Output = Result<IngestJob, Error>> + Send;
}Expand description
Public API for querying ingest jobs.
Required Methods§
Sourcefn get_ingest_job(
&self,
auth_: BearerToken,
ingest_job_rid: IngestJobRid,
) -> impl Future<Output = Result<IngestJob, Error>> + Send
fn get_ingest_job( &self, auth_: BearerToken, ingest_job_rid: IngestJobRid, ) -> impl Future<Output = Result<IngestJob, Error>> + Send
Returns a single ingest job by RID. Does not include the full ingest request details.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.