pub enum Naming {
Standard,
Skip,
Custom(Box<dyn NormalizationStage>),
}Expand description
Controls how type names are resolved.
Variants§
Standard
Run the standard NamingResolutionStage.
Skip
Skip naming resolution entirely.
Custom(Box<dyn NormalizationStage>)
Use a custom naming stage.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Naming
impl !RefUnwindSafe for Naming
impl !Send for Naming
impl !Sync for Naming
impl Unpin for Naming
impl UnsafeUnpin for Naming
impl !UnwindSafe for Naming
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