pub struct RecentProjectInfo {
pub path: String,
pub last_used: String,
}Expand description
Recent project info for watcher status.
Fields§
§path: StringAbsolute path to project root
last_used: StringLast used timestamp (ISO 8601)
Trait Implementations§
Source§impl Clone for RecentProjectInfo
impl Clone for RecentProjectInfo
Source§fn clone(&self) -> RecentProjectInfo
fn clone(&self) -> RecentProjectInfo
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 RecentProjectInfo
impl Debug for RecentProjectInfo
Source§impl<'de> Deserialize<'de> for RecentProjectInfo
impl<'de> Deserialize<'de> for RecentProjectInfo
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 RecentProjectInfo
impl RefUnwindSafe for RecentProjectInfo
impl Send for RecentProjectInfo
impl Sync for RecentProjectInfo
impl Unpin for RecentProjectInfo
impl UnsafeUnpin for RecentProjectInfo
impl UnwindSafe for RecentProjectInfo
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