pub enum S3Path<'a> {
Root,
Bucket {
bucket: &'a str,
},
Object {
bucket: &'a str,
key: &'a str,
},
}Expand description
A path in the S3 storage
Variants
Root
Root path
Bucket
Fields
bucket: &'a strBucket name
Bucket path
Object
Object path
Implementations
sourceimpl<'a> S3Path<'a>
impl<'a> S3Path<'a>
sourcepub fn check_bucket_name(name: &str) -> bool
pub fn check_bucket_name(name: &str) -> bool
sourcepub const fn check_key(key: &str) -> bool
pub const fn check_key(key: &str) -> bool
The name for a key is a sequence of Unicode characters whose UTF-8 encoding is at most 1,024 bytes long. See object keys
sourcepub fn try_from_path(path: &'a str) -> Result<Self, ParseS3PathError>
pub fn try_from_path(path: &'a str) -> Result<Self, ParseS3PathError>
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for S3Path<'a>
impl<'a> Send for S3Path<'a>
impl<'a> Sync for S3Path<'a>
impl<'a> Unpin for S3Path<'a>
impl<'a> UnwindSafe for S3Path<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more