pub struct MemoryFileInfo {
pub path: PathBuf,
pub scope: MemoryScope,
pub content: String,
pub mtime: u64,
}Expand description
A loaded CLAUDE.md / rules file with metadata.
Fields§
§path: PathBuf§scope: MemoryScope§content: String§mtime: u64Trait Implementations§
Source§impl Clone for MemoryFileInfo
impl Clone for MemoryFileInfo
Source§fn clone(&self) -> MemoryFileInfo
fn clone(&self) -> MemoryFileInfo
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 moreAuto Trait Implementations§
impl Freeze for MemoryFileInfo
impl RefUnwindSafe for MemoryFileInfo
impl Send for MemoryFileInfo
impl Sync for MemoryFileInfo
impl Unpin for MemoryFileInfo
impl UnsafeUnpin for MemoryFileInfo
impl UnwindSafe for MemoryFileInfo
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