pub struct Feed {
pub compressed: bool,
pub file_size: i64,
pub last_crawled: Option<NaiveDate>,
pub status: String,
pub submitted: Option<NaiveDate>,
pub type: String,
pub url: String,
pub url_count: i32,
}Expand description
RSS or Atom feed information
Contains details about a submitted feed, including its status and crawl information.
Fields§
§compressed: boolWhether the feed is compressed (gzipped)
file_size: i64Size of the feed file in bytes
last_crawled: Option<NaiveDate>When the feed was last crawled by Bing
status: StringCurrent status of the feed (e.g., “Active”, “Pending”)
submitted: Option<NaiveDate>When the feed was submitted
type: StringFeed type (e.g., “RSS”, “Atom”)
url: StringURL of the feed
url_count: i32Number of URLs contained in the feed
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Feed
impl<'de> Deserialize<'de> for Feed
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 Feed
impl RefUnwindSafe for Feed
impl Send for Feed
impl Sync for Feed
impl Unpin for Feed
impl UnwindSafe for Feed
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)