pub struct FindGlobResult {
pub paths: Vec<String>,
pub truncated: bool,
}Expand description
Bounded glob result.
Fields§
§paths: Vec<String>Relative paths retained within the requested bound.
truncated: boolTrue when more paths existed after paths reached max.
Trait Implementations§
Source§impl Clone for FindGlobResult
impl Clone for FindGlobResult
Source§fn clone(&self) -> FindGlobResult
fn clone(&self) -> FindGlobResult
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 moreSource§impl Debug for FindGlobResult
impl Debug for FindGlobResult
impl Eq for FindGlobResult
Source§impl PartialEq for FindGlobResult
impl PartialEq for FindGlobResult
impl StructuralPartialEq for FindGlobResult
Auto Trait Implementations§
impl Freeze for FindGlobResult
impl RefUnwindSafe for FindGlobResult
impl Send for FindGlobResult
impl Sync for FindGlobResult
impl Unpin for FindGlobResult
impl UnsafeUnpin for FindGlobResult
impl UnwindSafe for FindGlobResult
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