pub struct CodegenReport {
pub module_path: PathBuf,
pub module_relative: String,
pub schemas: Vec<String>,
pub contents: String,
pub written: bool,
}Expand description
Result of a successful codegen run.
Fields§
§module_path: PathBufAbsolute path of the generated module.
module_relative: StringModule path relative to the project root (src/<package>_io.gleam).
schemas: Vec<String>Schema files generated from, relative to the project root, in generation order.
contents: StringThe complete generated module source.
written: boolWhether the module was written (false in check mode).
Trait Implementations§
Source§impl Clone for CodegenReport
impl Clone for CodegenReport
Source§fn clone(&self) -> CodegenReport
fn clone(&self) -> CodegenReport
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 moreSource§impl Debug for CodegenReport
impl Debug for CodegenReport
impl Eq for CodegenReport
Source§impl PartialEq for CodegenReport
impl PartialEq for CodegenReport
Source§fn eq(&self, other: &CodegenReport) -> bool
fn eq(&self, other: &CodegenReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodegenReport
Auto Trait Implementations§
impl Freeze for CodegenReport
impl RefUnwindSafe for CodegenReport
impl Send for CodegenReport
impl Sync for CodegenReport
impl Unpin for CodegenReport
impl UnsafeUnpin for CodegenReport
impl UnwindSafe for CodegenReport
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.