Struct datafusion_execution::object_store::ObjectStoreUrl
source · pub struct ObjectStoreUrl { /* private fields */ }
Expand description
A parsed URL identifying a particular ObjectStore
Implementations§
source§impl ObjectStoreUrl
impl ObjectStoreUrl
sourcepub fn local_filesystem() -> Self
pub fn local_filesystem() -> Self
An ObjectStoreUrl
for the local filesystem
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Returns this ObjectStoreUrl
as a string
Trait Implementations§
source§impl AsRef<Url> for ObjectStoreUrl
impl AsRef<Url> for ObjectStoreUrl
source§impl AsRef<str> for ObjectStoreUrl
impl AsRef<str> for ObjectStoreUrl
source§impl Clone for ObjectStoreUrl
impl Clone for ObjectStoreUrl
source§fn clone(&self) -> ObjectStoreUrl
fn clone(&self) -> ObjectStoreUrl
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ObjectStoreUrl
impl Debug for ObjectStoreUrl
source§impl Display for ObjectStoreUrl
impl Display for ObjectStoreUrl
source§impl Hash for ObjectStoreUrl
impl Hash for ObjectStoreUrl
source§impl Ord for ObjectStoreUrl
impl Ord for ObjectStoreUrl
source§fn cmp(&self, other: &ObjectStoreUrl) -> Ordering
fn cmp(&self, other: &ObjectStoreUrl) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ObjectStoreUrl> for ObjectStoreUrl
impl PartialEq<ObjectStoreUrl> for ObjectStoreUrl
source§fn eq(&self, other: &ObjectStoreUrl) -> bool
fn eq(&self, other: &ObjectStoreUrl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ObjectStoreUrl> for ObjectStoreUrl
impl PartialOrd<ObjectStoreUrl> for ObjectStoreUrl
source§fn partial_cmp(&self, other: &ObjectStoreUrl) -> Option<Ordering>
fn partial_cmp(&self, other: &ObjectStoreUrl) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for ObjectStoreUrl
impl StructuralEq for ObjectStoreUrl
impl StructuralPartialEq for ObjectStoreUrl
Auto Trait Implementations§
impl RefUnwindSafe for ObjectStoreUrl
impl Send for ObjectStoreUrl
impl Sync for ObjectStoreUrl
impl Unpin for ObjectStoreUrl
impl UnwindSafe for ObjectStoreUrl
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.