pub struct McpbCacheMetadata {
pub source: String,
pub content_hash: String,
pub extracted_path: String,
pub cached_at: String,
pub last_checked: String,
}Expand description
Metadata stored for each cached MCPB.
Fields§
§source: String§content_hash: String§extracted_path: String§cached_at: String§last_checked: StringTrait Implementations§
Source§impl Clone for McpbCacheMetadata
impl Clone for McpbCacheMetadata
Source§fn clone(&self) -> McpbCacheMetadata
fn clone(&self) -> McpbCacheMetadata
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 McpbCacheMetadata
impl Debug for McpbCacheMetadata
Source§impl<'de> Deserialize<'de> for McpbCacheMetadata
impl<'de> Deserialize<'de> for McpbCacheMetadata
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 McpbCacheMetadata
impl RefUnwindSafe for McpbCacheMetadata
impl Send for McpbCacheMetadata
impl Sync for McpbCacheMetadata
impl Unpin for McpbCacheMetadata
impl UnsafeUnpin for McpbCacheMetadata
impl UnwindSafe for McpbCacheMetadata
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