pub struct ProjectStructure {
pub controllers: Vec<ControllerInfo>,
pub models: Vec<ModelInfo>,
pub metadata: ProjectMetadata,
}Expand description
Discovered project structure
Fields§
§controllers: Vec<ControllerInfo>Controllers found in the project
models: Vec<ModelInfo>Models/schemas found in the project
metadata: ProjectMetadataProject metadata
Trait Implementations§
Source§impl Clone for ProjectStructure
impl Clone for ProjectStructure
Source§fn clone(&self) -> ProjectStructure
fn clone(&self) -> ProjectStructure
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 moreAuto Trait Implementations§
impl Freeze for ProjectStructure
impl RefUnwindSafe for ProjectStructure
impl Send for ProjectStructure
impl Sync for ProjectStructure
impl Unpin for ProjectStructure
impl UnwindSafe for ProjectStructure
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