Not entirely sure how this should work, but often you get lists that are structure like a data frame (e.g. each element is a vector of the same length), but don't have the write attributes. It would be nice to be able to convert directly to one data frame, rather than having to convert each one first.
x <- list(list(a = 1, b = 2), list(a = 3, b = 4))
rbind_all(x)