pub struct CrawlingRecordDTO {
pub url: Option<String>,
pub id: Option<String>,
pub title: Option<String>,
pub error: Option<ErrorDetailsDTO>,
}Available on crate feature
knowledge-base only.Expand description
CrawlingRecordDTO from the GoHighLevel OpenAPI spec.
Fields§
§url: Option<String>URL being crawled Required by the API. (Optional here so responses that omit it still parse.)
id: Option<String>Unique record identifier Required by the API. (Optional here so responses that omit it still parse.)
title: Option<String>Page title (for successful/pending records)
error: Option<ErrorDetailsDTO>Error details (for failed records)
Trait Implementations§
Source§impl Clone for CrawlingRecordDTO
impl Clone for CrawlingRecordDTO
Source§fn clone(&self) -> CrawlingRecordDTO
fn clone(&self) -> CrawlingRecordDTO
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 CrawlingRecordDTO
impl Debug for CrawlingRecordDTO
Source§impl Default for CrawlingRecordDTO
impl Default for CrawlingRecordDTO
Source§fn default() -> CrawlingRecordDTO
fn default() -> CrawlingRecordDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CrawlingRecordDTO
impl<'de> Deserialize<'de> for CrawlingRecordDTO
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 CrawlingRecordDTO
impl RefUnwindSafe for CrawlingRecordDTO
impl Send for CrawlingRecordDTO
impl Sync for CrawlingRecordDTO
impl Unpin for CrawlingRecordDTO
impl UnsafeUnpin for CrawlingRecordDTO
impl UnwindSafe for CrawlingRecordDTO
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