pub struct WindowNameVariants {
pub snake: String,
pub pascal: String,
pub title: String,
}Expand description
Window name variants for template rendering.
This is a simplified version for template rendering. The full WindowName with validation will be in validation.rs.
Fields§
§snake: Stringsnake_case representation (e.g., “user_profile”)
pascal: StringPascalCase representation (e.g., “UserProfile”)
title: StringTitle Case representation (e.g., “User Profile”)
Trait Implementations§
Source§impl Clone for WindowNameVariants
impl Clone for WindowNameVariants
Source§fn clone(&self) -> WindowNameVariants
fn clone(&self) -> WindowNameVariants
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 moreAuto Trait Implementations§
impl Freeze for WindowNameVariants
impl RefUnwindSafe for WindowNameVariants
impl Send for WindowNameVariants
impl Sync for WindowNameVariants
impl Unpin for WindowNameVariants
impl UnwindSafe for WindowNameVariants
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