pub struct CacheListItem {
pub feed_url: String,
pub fetched_at: String,
pub size_bytes: u64,
pub etag: Option<String>,
}Expand description
Summary of a cache entry for rss cache list.
Fields§
§feed_url: String§fetched_at: String§size_bytes: u64§etag: Option<String>Trait Implementations§
Source§impl Clone for CacheListItem
impl Clone for CacheListItem
Source§fn clone(&self) -> CacheListItem
fn clone(&self) -> CacheListItem
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 CacheListItem
impl Debug for CacheListItem
Source§impl<'de> Deserialize<'de> for CacheListItem
impl<'de> Deserialize<'de> for CacheListItem
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 CacheListItem
impl RefUnwindSafe for CacheListItem
impl Send for CacheListItem
impl Sync for CacheListItem
impl Unpin for CacheListItem
impl UnsafeUnpin for CacheListItem
impl UnwindSafe for CacheListItem
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