Rust Analyzer not showing information on Path during debugging inside vscode

Hi,

I am using rust V1.71 on Windows 11 with Vscode.
When I run the code below:

fn main() {
    let path1=Path::new("E:\\folder1");
}

and have a breakpoint set on the line starting with let, I see all relevant information regarding the value(s) for most of the types except Path. All I am given is below:

path1: {length 5}
<When expanded>   length:5

Is this expected behaviour?