pub struct ProjectsRegistry {
pub projects: Vec<ProjectEntry>,
}Expand description
Global projects registry
Fields§
§projects: Vec<ProjectEntry>Implementations§
Source§impl ProjectsRegistry
impl ProjectsRegistry
Sourcepub fn registry_path() -> Option<PathBuf>
pub fn registry_path() -> Option<PathBuf>
Get the path to the global projects file
Sourcepub fn register_project(&mut self, project_path: &Path)
pub fn register_project(&mut self, project_path: &Path)
Register or update a project
Sourcepub fn remove_project(&mut self, project_path: &str) -> bool
pub fn remove_project(&mut self, project_path: &str) -> bool
Remove a project from the registry
Sourcepub fn get_projects(&self) -> Vec<&ProjectEntry>
pub fn get_projects(&self) -> Vec<&ProjectEntry>
Get all registered projects sorted by last_accessed (most recent first)
Sourcepub fn validate_project(path: &str) -> bool
pub fn validate_project(path: &str) -> bool
Check if a project exists and has a valid database
Trait Implementations§
Source§impl Clone for ProjectsRegistry
impl Clone for ProjectsRegistry
Source§fn clone(&self) -> ProjectsRegistry
fn clone(&self) -> ProjectsRegistry
Returns a duplicate of the value. Read more
1.0.0 · 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 ProjectsRegistry
impl Debug for ProjectsRegistry
Source§impl Default for ProjectsRegistry
impl Default for ProjectsRegistry
Source§fn default() -> ProjectsRegistry
fn default() -> ProjectsRegistry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectsRegistry
impl<'de> Deserialize<'de> for ProjectsRegistry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProjectsRegistry
impl RefUnwindSafe for ProjectsRegistry
impl Send for ProjectsRegistry
impl Sync for ProjectsRegistry
impl Unpin for ProjectsRegistry
impl UnwindSafe for ProjectsRegistry
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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