pub struct ExtractStatusResponse {
pub id: String,
pub status: String,
pub results: Vec<ExtractUrlResult>,
pub error: Option<String>,
pub expires_at: String,
pub credits_used: u32,
pub tokens_used: u32,
}Fields§
§id: String§status: String§results: Vec<ExtractUrlResult>§error: Option<String>Job-level error, set only when every URL failed.
expires_at: String§credits_used: u32§tokens_used: u32Trait Implementations§
Source§impl Debug for ExtractStatusResponse
impl Debug for ExtractStatusResponse
Auto Trait Implementations§
impl Freeze for ExtractStatusResponse
impl RefUnwindSafe for ExtractStatusResponse
impl Send for ExtractStatusResponse
impl Sync for ExtractStatusResponse
impl Unpin for ExtractStatusResponse
impl UnsafeUnpin for ExtractStatusResponse
impl UnwindSafe for ExtractStatusResponse
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more