pub struct GlobOutput {
pub files: Vec<String>,
pub truncated: bool,
}Expand description
Output from glob file matching.
Fields§
§files: Vec<String>Matched file paths relative to search directory, sorted by mtime (newest first).
truncated: boolWhether results were truncated due to limit.
Trait Implementations§
Source§impl Debug for GlobOutput
impl Debug for GlobOutput
Auto Trait Implementations§
impl Freeze for GlobOutput
impl RefUnwindSafe for GlobOutput
impl Send for GlobOutput
impl Sync for GlobOutput
impl Unpin for GlobOutput
impl UnwindSafe for GlobOutput
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