pub struct SmartBrowseLastRun {
pub id: String,
pub status: RunStatus,
pub pages_extracted: Option<i64>,
pub effective_cap: Option<i64>,
pub clamped_by_credits: Option<bool>,
pub created_at: Option<String>,
pub completed_at: Option<String>,
}Expand description
Summary of the account’s most recent run, from SmartBrowseUsage.
Fields§
§id: StringOpaque run id.
status: RunStatusRun lifecycle state.
pages_extracted: Option<i64>Pages extracted by the run.
effective_cap: Option<i64>Page ceiling actually applied — min(plan cap, balance / cost_per_page).
clamped_by_credits: Option<bool>True when credits, not the plan, bound the page ceiling.
created_at: Option<String>Creation timestamp (RFC3339).
completed_at: Option<String>Completion timestamp (RFC3339); absent while in flight.
Trait Implementations§
Source§impl Clone for SmartBrowseLastRun
impl Clone for SmartBrowseLastRun
Source§fn clone(&self) -> SmartBrowseLastRun
fn clone(&self) -> SmartBrowseLastRun
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SmartBrowseLastRun
impl Debug for SmartBrowseLastRun
Source§impl<'de> Deserialize<'de> for SmartBrowseLastRun
impl<'de> Deserialize<'de> for SmartBrowseLastRun
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SmartBrowseLastRun
impl RefUnwindSafe for SmartBrowseLastRun
impl Send for SmartBrowseLastRun
impl Sync for SmartBrowseLastRun
impl Unpin for SmartBrowseLastRun
impl UnsafeUnpin for SmartBrowseLastRun
impl UnwindSafe for SmartBrowseLastRun
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