pub struct RecentIndex {
pub generated_at: String,
pub items: Vec<RecentIndexItem>,
}Fields§
§generated_at: String§items: Vec<RecentIndexItem>Trait Implementations§
Source§impl Clone for RecentIndex
impl Clone for RecentIndex
Source§fn clone(&self) -> RecentIndex
fn clone(&self) -> RecentIndex
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 RecentIndex
impl Debug for RecentIndex
Source§impl Default for RecentIndex
impl Default for RecentIndex
Source§fn default() -> RecentIndex
fn default() -> RecentIndex
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecentIndex
impl<'de> Deserialize<'de> for RecentIndex
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 RecentIndex
impl RefUnwindSafe for RecentIndex
impl Send for RecentIndex
impl Sync for RecentIndex
impl Unpin for RecentIndex
impl UnsafeUnpin for RecentIndex
impl UnwindSafe for RecentIndex
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