All FileInfo attributes list for DirectoryList

I wonder that DirectoryList yet requires from me any string input,
but well, I have the issue with retrieving value from FileInfo::modification_date_time method as maybe this last attribute incorrect:

"standard::display-name,standard::symbolic-icon,standard::size,standard::content-type,standard::modification-date-time"

So I’m looking for full attributes list (strings)

Because it’s nothing here:

Experimentally found it by parsing ffi constant like:

println!(
    "{:?}",
    String::from_utf8(G_FILE_ATTRIBUTE_TIME_MODIFIED.to_vec())
);

Where attribute I want is time::modified

I grabbed the const name from this page: