pub struct AgentsMdFile {
pub path: PathBuf,
pub content: String,
}Expand description
A discovered AGENTS.md file with its content and source path.
Fields§
§path: PathBufAbsolute path to the AGENTS.md file.
content: StringFull content of the file.
Trait Implementations§
Source§impl Clone for AgentsMdFile
impl Clone for AgentsMdFile
Source§fn clone(&self) -> AgentsMdFile
fn clone(&self) -> AgentsMdFile
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 moreAuto Trait Implementations§
impl Freeze for AgentsMdFile
impl RefUnwindSafe for AgentsMdFile
impl Send for AgentsMdFile
impl Sync for AgentsMdFile
impl Unpin for AgentsMdFile
impl UnsafeUnpin for AgentsMdFile
impl UnwindSafe for AgentsMdFile
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