pub struct TryEntry {Show 15 fields
pub name: String,
pub display_name: String,
pub modified: SystemTime,
pub created: SystemTime,
pub score: i64,
pub is_git: bool,
pub is_worktree: bool,
pub is_worktree_locked: bool,
pub is_gitmodules: bool,
pub is_mise: bool,
pub is_cargo: bool,
pub is_maven: bool,
pub is_flutter: bool,
pub is_go: bool,
pub is_python: bool,
}Fields§
§name: String§display_name: String§modified: SystemTime§created: SystemTime§score: i64§is_git: bool§is_worktree: bool§is_worktree_locked: bool§is_gitmodules: bool§is_mise: bool§is_cargo: bool§is_maven: bool§is_flutter: bool§is_go: bool§is_python: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for TryEntry
impl RefUnwindSafe for TryEntry
impl Send for TryEntry
impl Sync for TryEntry
impl Unpin for TryEntry
impl UnsafeUnpin for TryEntry
impl UnwindSafe for TryEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more