Returns true if the [`ListingTableUrl`] points to the folder
(&self)
| 327 | |
| 328 | /// Returns true if the [`ListingTableUrl`] points to the folder |
| 329 | pub fn is_folder(&self) -> bool { |
| 330 | self.url.scheme() == "file" && self.is_collection() |
| 331 | } |
| 332 | |
| 333 | /// Return the `url` for [`ListingTableUrl`] |
| 334 | pub fn get_url(&self) -> &Url { |
no test coverage detected