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
Source§impl Serialize for GlobOutput
impl Serialize for GlobOutput
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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