pub struct ExportConfig {
pub export_dir: PathBuf,
pub file_extension: String,
pub array_tuple_limit: usize,
pub large_int_type: String,
}Expand description
Configuration for type export.
Fields§
§export_dir: PathBuf§file_extension: String§array_tuple_limit: usize§large_int_type: StringImplementations§
Source§impl ExportConfig
impl ExportConfig
Sourcepub fn resolve_path(&self, base: &Path) -> PathBuf
pub fn resolve_path(&self, base: &Path) -> PathBuf
Resolve a base path (without extension) to a full path with extension.
Trait Implementations§
Source§impl Clone for ExportConfig
impl Clone for ExportConfig
Source§fn clone(&self) -> ExportConfig
fn clone(&self) -> ExportConfig
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 moreSource§impl Debug for ExportConfig
impl Debug for ExportConfig
Auto Trait Implementations§
impl Freeze for ExportConfig
impl RefUnwindSafe for ExportConfig
impl Send for ExportConfig
impl Sync for ExportConfig
impl Unpin for ExportConfig
impl UnsafeUnpin for ExportConfig
impl UnwindSafe for ExportConfig
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