Return the URL path not excluding any glob expression If [`Self::is_collection`], this is the listing prefix Otherwise, this is the path to the object
(&self)
| 167 | /// If [`Self::is_collection`], this is the listing prefix |
| 168 | /// Otherwise, this is the path to the object |
| 169 | pub fn prefix(&self) -> &Path { |
| 170 | &self.prefix |
| 171 | } |
| 172 | |
| 173 | /// Returns `true` if `path` matches this [`ListingTableUrl`] |
| 174 | pub fn contains(&self, path: &Path, ignore_subdirectory: bool) -> bool { |
no outgoing calls