---
source: src/tests.rs
expression: result
---
Item: TupleStruct
Kind: Struct
Visibility: Public
Defined at: test_crate::TupleStruct
A tuple struct for testing
```rust
struct TupleStruct(
pub String, // field 0
// ... 1 private field hidden
);
```
Fields:
• Field 0: String
It's probably uncommon to add documentation for a tuple struct field
std traits: Any, Borrow<T>, BorrowMut<T>, Freeze, From<T>, Into<U>, RefUnwindSafe, Send, Sync, TryFrom<U> [+3 more]