pub struct SavedSiteOutput {
pub analysis_result: Option<AnalysisResultOutput>,
pub crawl_options: Option<CrawlOptionsOutput>,
pub created_at: String,
pub default_schema_id: Option<String>,
pub domain: String,
pub fetch_mode: String,
pub id: String,
pub name: Option<String>,
pub organization_id: Option<String>,
pub updated_at: String,
pub url: String,
pub user_id: String,
}Fields§
§analysis_result: Option<AnalysisResultOutput>Analysis result
crawl_options: Option<CrawlOptionsOutput>Saved crawl options
created_at: StringCreation timestamp
default_schema_id: Option<String>Default schema to use
domain: StringExtracted domain
fetch_mode: StringFetch mode: auto, static, dynamic
id: StringSite ID
name: Option<String>User-friendly name
organization_id: Option<String>Organization ID for sharing
updated_at: StringLast update timestamp
url: StringSite URL
user_id: StringOwner user ID
Trait Implementations§
Source§impl Clone for SavedSiteOutput
impl Clone for SavedSiteOutput
Source§fn clone(&self) -> SavedSiteOutput
fn clone(&self) -> SavedSiteOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 SavedSiteOutput
impl Debug for SavedSiteOutput
Source§impl<'de> Deserialize<'de> for SavedSiteOutput
impl<'de> Deserialize<'de> for SavedSiteOutput
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 SavedSiteOutput
impl RefUnwindSafe for SavedSiteOutput
impl Send for SavedSiteOutput
impl Sync for SavedSiteOutput
impl Unpin for SavedSiteOutput
impl UnwindSafe for SavedSiteOutput
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