structstruck icon indicating copy to clipboard operation
structstruck copied to clipboard

Rust nested structs

Results 4 structstruck issues
Sort by recently updated
recently updated
newest added

Add a new attribute named `nostrike` that allows you to skip subtrees for `strikethrough`. initial discussion in #9

Would it be feasible having a `strikethrough`-like option for item visibility? Since this crate is usually aimed at 'data-container-like' structs, where usually all fields are `pub`, and repeating `pub` over...

Hey, it'd be neat if you could do types with structstruck too. Something like this: ```rust struct UserMap { user_id: type UserId = u64, contact: struct Contact { email: type...

Cool crate! I've discovered that declaring structs/enums inside an array isn't possible. ``` pub struct Config { input_uid: [struct { name: String}; 3], output_uid: Vec, } ``` output_uid works fine...