pub struct RecentIndexItem {
pub id: String,
pub title: String,
pub updated_at: String,
pub last_accessed_at: Option<String>,
pub status: DurableMemoryStatus,
}Fields§
§id: String§title: String§updated_at: String§last_accessed_at: Option<String>§status: DurableMemoryStatusTrait Implementations§
Source§impl Clone for RecentIndexItem
impl Clone for RecentIndexItem
Source§fn clone(&self) -> RecentIndexItem
fn clone(&self) -> RecentIndexItem
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 RecentIndexItem
impl Debug for RecentIndexItem
Source§impl<'de> Deserialize<'de> for RecentIndexItem
impl<'de> Deserialize<'de> for RecentIndexItem
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 RecentIndexItem
impl RefUnwindSafe for RecentIndexItem
impl Send for RecentIndexItem
impl Sync for RecentIndexItem
impl Unpin for RecentIndexItem
impl UnsafeUnpin for RecentIndexItem
impl UnwindSafe for RecentIndexItem
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