pub struct ProjectInfoResult {
pub project_id: Uuid,
pub project_name: Option<String>,
pub project_root: String,
pub memory_count: usize,
pub mr_pid_exists: bool,
}Fields§
§project_id: Uuid§project_name: Option<String>§project_root: String§memory_count: usize§mr_pid_exists: boolTrait Implementations§
Source§impl Clone for ProjectInfoResult
impl Clone for ProjectInfoResult
Source§fn clone(&self) -> ProjectInfoResult
fn clone(&self) -> ProjectInfoResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectInfoResult
impl Debug for ProjectInfoResult
Source§impl<'de> Deserialize<'de> for ProjectInfoResult
impl<'de> Deserialize<'de> for ProjectInfoResult
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 ProjectInfoResult
impl RefUnwindSafe for ProjectInfoResult
impl Send for ProjectInfoResult
impl Sync for ProjectInfoResult
impl Unpin for ProjectInfoResult
impl UnsafeUnpin for ProjectInfoResult
impl UnwindSafe for ProjectInfoResult
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