pub struct ProjectIdentity {
pub root_dir: PathBuf,
pub git_remote: Option<String>,
pub display_name: String,
}Expand description
Unique identity for a project, used as the cache key for per-project memories.
Fields§
§root_dir: PathBufCanonical absolute path to the project root directory.
git_remote: Option<String>Git remote origin URL, if available.
display_name: StringHuman-readable project name.
Implementations§
Trait Implementations§
Source§impl Clone for ProjectIdentity
impl Clone for ProjectIdentity
Source§fn clone(&self) -> ProjectIdentity
fn clone(&self) -> ProjectIdentity
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 ProjectIdentity
impl Debug for ProjectIdentity
Source§impl<'de> Deserialize<'de> for ProjectIdentity
impl<'de> Deserialize<'de> for ProjectIdentity
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
Source§impl Hash for ProjectIdentity
impl Hash for ProjectIdentity
Source§impl PartialEq for ProjectIdentity
impl PartialEq for ProjectIdentity
Source§impl Serialize for ProjectIdentity
impl Serialize for ProjectIdentity
impl Eq for ProjectIdentity
impl StructuralPartialEq for ProjectIdentity
Auto Trait Implementations§
impl Freeze for ProjectIdentity
impl RefUnwindSafe for ProjectIdentity
impl Send for ProjectIdentity
impl Sync for ProjectIdentity
impl Unpin for ProjectIdentity
impl UnsafeUnpin for ProjectIdentity
impl UnwindSafe for ProjectIdentity
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