pub struct TreeSearchResult {
pub paths: Vec<String>,
pub truncated: bool,
}Expand description
Result of a tree search: matched paths and whether the tree was truncated.
Fields§
§paths: Vec<String>§truncated: boolTrue if the GitHub API truncated the tree (>100k entries).
Some matching files may be missing from paths.
Auto Trait Implementations§
impl Freeze for TreeSearchResult
impl RefUnwindSafe for TreeSearchResult
impl Send for TreeSearchResult
impl Sync for TreeSearchResult
impl Unpin for TreeSearchResult
impl UnsafeUnpin for TreeSearchResult
impl UnwindSafe for TreeSearchResult
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