> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# core::fmt::Debug

A trait for debug formatting, using the empty format (`{:?}`).

## Signature

```rust theme={null}
pub trait Debug
```

## Examples

```rust theme={null}
let word: ByteArray = "123";
println!("{:?}", word);
```

## Trait functions

### fmt

#### Signature

```rust theme={null}
fn fmt(self: @T, ref f: Formatter) -> Result
```
