pub struct GeneratedApplication {
pub code: String,
pub handlers: Vec<String>,
pub widgets: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Output structure from code generation
Fields§
§code: StringGenerated Rust code as string
handlers: Vec<String>List of handler names discovered
widgets: Vec<String>List of widget types used
warnings: Vec<String>Any warnings generated during code gen
Trait Implementations§
Source§impl Clone for GeneratedApplication
impl Clone for GeneratedApplication
Source§fn clone(&self) -> GeneratedApplication
fn clone(&self) -> GeneratedApplication
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 GeneratedApplication
impl RefUnwindSafe for GeneratedApplication
impl Send for GeneratedApplication
impl Sync for GeneratedApplication
impl Unpin for GeneratedApplication
impl UnwindSafe for GeneratedApplication
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