Return the [`ObjectStoreUrl`] for this [`ListingTableUrl`]
(&self)
| 321 | |
| 322 | /// Return the [`ObjectStoreUrl`] for this [`ListingTableUrl`] |
| 323 | pub fn object_store(&self) -> ObjectStoreUrl { |
| 324 | let url = &self.url[url::Position::BeforeScheme..url::Position::BeforePath]; |
| 325 | ObjectStoreUrl::parse(url).unwrap() |
| 326 | } |
| 327 | |
| 328 | /// Returns true if the [`ListingTableUrl`] points to the folder |
| 329 | pub fn is_folder(&self) -> bool { |
no outgoing calls