pub struct DisplayConfig {
pub type_prefixes: HashMap<String, String>,
}Expand description
Configuration for display formatting in generated Python code.
Fields§
§type_prefixes: HashMap<String, String>Maps type alias names to display prefixes (e.g., “gpr” -> “r”, “fpr” -> “f”).
Trait Implementations§
Source§impl Clone for DisplayConfig
impl Clone for DisplayConfig
Source§fn clone(&self) -> DisplayConfig
fn clone(&self) -> DisplayConfig
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 DisplayConfig
impl Debug for DisplayConfig
Source§impl Default for DisplayConfig
impl Default for DisplayConfig
Source§fn default() -> DisplayConfig
fn default() -> DisplayConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DisplayConfig
impl RefUnwindSafe for DisplayConfig
impl Send for DisplayConfig
impl Sync for DisplayConfig
impl Unpin for DisplayConfig
impl UnsafeUnpin for DisplayConfig
impl UnwindSafe for DisplayConfig
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