pub struct FactSheet {
pub project_description: String,
pub project_scope: Option<ProjectScope>,
pub external_urls: Option<Vec<String>>,
pub backend_code: Option<String>,
pub api_endpoint_schema: Option<Vec<RouteObject>>,
}
Expand description
Contains details about the project, including its description, scope, and other metadata.
§Fields
project_description
: A textual description of the project’s requirements and goals.project_scope
: Optional information about the project’s scope.external_urls
: Optional list of external URLs related to the project.backend_code
: Optional string containing generated backend code.api_endpoint_schema
: Optional schema describing API endpoints as a list ofRouteObject
s.
Fields§
§project_description: String
§project_scope: Option<ProjectScope>
§external_urls: Option<Vec<String>>
§backend_code: Option<String>
§api_endpoint_schema: Option<Vec<RouteObject>>
Trait Implementations§
source§impl<'de> Deserialize<'de> for FactSheet
impl<'de> Deserialize<'de> for FactSheet
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
impl StructuralPartialEq for FactSheet
Auto Trait Implementations§
impl Freeze for FactSheet
impl RefUnwindSafe for FactSheet
impl Send for FactSheet
impl Sync for FactSheet
impl Unpin for FactSheet
impl UnwindSafe for FactSheet
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)