pub struct Find;Expand description
/find(pattern) — search for files matching a glob pattern.
/find(src/**/*.rs) — list matching file paths, one per line.
/find(src).content(TODO) — search file contents for a string.
Pure Rust directory walking + pattern matching. No subprocess.
Trait Implementations§
Source§impl SlashCommand for Find
impl SlashCommand for Find
Auto Trait Implementations§
impl Freeze for Find
impl RefUnwindSafe for Find
impl Send for Find
impl Sync for Find
impl Unpin for Find
impl UnsafeUnpin for Find
impl UnwindSafe for Find
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