pub struct WorkspaceAnalysis {
pub root_path: String,
pub project_type: Option<String>,
pub languages: Vec<String>,
pub frameworks: Vec<String>,
pub config_files: Vec<String>,
pub source_files: Vec<String>,
pub test_files: Vec<String>,
pub documentation_files: Vec<String>,
pub total_files: usize,
pub total_size_bytes: u64,
}Expand description
Workspace analysis result
Fields§
§root_path: String§project_type: Option<String>§languages: Vec<String>§frameworks: Vec<String>§config_files: Vec<String>§source_files: Vec<String>§test_files: Vec<String>§documentation_files: Vec<String>§total_files: usize§total_size_bytes: u64Trait Implementations§
Source§impl Clone for WorkspaceAnalysis
impl Clone for WorkspaceAnalysis
Source§fn clone(&self) -> WorkspaceAnalysis
fn clone(&self) -> WorkspaceAnalysis
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 WorkspaceAnalysis
impl Debug for WorkspaceAnalysis
Source§impl<'de> Deserialize<'de> for WorkspaceAnalysis
impl<'de> Deserialize<'de> for WorkspaceAnalysis
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 WorkspaceAnalysis
impl RefUnwindSafe for WorkspaceAnalysis
impl Send for WorkspaceAnalysis
impl Sync for WorkspaceAnalysis
impl Unpin for WorkspaceAnalysis
impl UnwindSafe for WorkspaceAnalysis
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