Rust Debugging in gdb: Link Assembly to Source Lines

Is it possible to use the gdb tool to debug Rust code such that, in layout asm view, each line of assembly code is annotated with the corresponding original Rust code? For example:

0x555555568838 add $0x1,%rax # unsafe { COUNTER += 1; } src/lib.rs:4

Maybe one way is to use layout split command which divides window into two view parts -- one for source code and one for corresponding assembly.

reference