pub struct Project {
pub id: String,
pub path: String,
pub sessions: Vec<String>,
pub created_at: u64,
pub most_recent_session: Option<u64>,
}Expand description
Represents a Claude Code project with its metadata and sessions
Fields§
§id: StringUnique project identifier
path: StringFile system path to the project
sessions: Vec<String>List of session IDs associated with this project
created_at: u64Unix timestamp of project creation
most_recent_session: Option<u64>Unix timestamp of most recent session (if any)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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 Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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