pub struct SearchCtx {
pub queue: IntoIter<String>,
pub level: u16,
pub base_dir: PathBuf,
}Expand description
Directory search continuation state keyed by search SID.
Fields§
§queue: IntoIter<String>Names still to be returned.
level: u16Information level requested at FIND_FIRST2 time.
base_dir: PathBufDirectory the search runs against.
Auto Trait Implementations§
impl Freeze for SearchCtx
impl RefUnwindSafe for SearchCtx
impl Send for SearchCtx
impl Sync for SearchCtx
impl Unpin for SearchCtx
impl UnsafeUnpin for SearchCtx
impl UnwindSafe for SearchCtx
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