pub struct CodegenRequest {
pub schema_path: PathBuf,
pub schema_kind: SchemaKind,
pub target: CodegenTargetKind,
pub dto: Option<DtoConfig>,
}Expand description
Request executed by the code generation engine
Fields§
§schema_path: PathBuf§schema_kind: SchemaKind§target: CodegenTargetKind§dto: Option<DtoConfig>Trait Implementations§
Source§impl Clone for CodegenRequest
impl Clone for CodegenRequest
Source§fn clone(&self) -> CodegenRequest
fn clone(&self) -> CodegenRequest
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 moreAuto Trait Implementations§
impl Freeze for CodegenRequest
impl RefUnwindSafe for CodegenRequest
impl Send for CodegenRequest
impl Sync for CodegenRequest
impl Unpin for CodegenRequest
impl UnsafeUnpin for CodegenRequest
impl UnwindSafe for CodegenRequest
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