Struct ObjectPathInner

Source
pub struct ObjectPathInner<'a>(/* private fields */);
Expand description

OSS Object 存储对象的路径 不带前缀 /

Implementations§

Source§

impl<'a> ObjectPathInner<'a>

Source

pub fn new(val: impl Into<Cow<'a, str>>) -> Result<Self, InvalidObjectPath>

Creates a new ObjectPath from the given string.

assert!(ObjectPath::new("abc.jpg").is_ok());
assert!(ObjectPath::new("abc/def.jpg").is_ok());
assert!(ObjectPath::new("/").is_err());
assert!(ObjectPath::new("/abc").is_err());
assert!(ObjectPath::new("abc/").is_err());
assert!(ObjectPath::new(".abc").is_err());
assert!(ObjectPath::new("../abc").is_err());
assert!(ObjectPath::new(r"aaa\abc").is_err());
Source

pub const unsafe fn from_static(secret: &'static str) -> Self

§Safety

Const function that creates a new ObjectPath from a static str.

let path = unsafe { ObjectPath::from_static("abc") };
assert!(path == "abc");

Trait Implementations§

Source§

impl<'file, 'dir: 'file> Add<ObjectPathInner<'file>> for ObjectDir<'dir>

Source§

fn add(self, rhs: ObjectPathInner<'file>) -> Self::Output

§支持 ObjectDir 与 ObjectPath 相加运算
let dir1 = ObjectDir::new("dir1/").unwrap();
let file1 = ObjectPath::new("img1.png").unwrap();
let full_file = ObjectPath::new("dir1/img1.png").unwrap();

assert_eq!(dir1 + file1, full_file);
Source§

type Output = ObjectPathInner<'file>

The resulting type after applying the + operator.
Source§

impl<T: PointerFamily> AsRef<ObjectPathInner<'static>> for Object<T>

Source§

fn as_ref(&self) -> &ObjectPath

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: PointerFamily> AsRef<ObjectPathInner<'static>> for ObjectBase<T>

Source§

fn as_ref(&self) -> &ObjectPath

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<str> for ObjectPathInner<'_>

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<'a> Clone for ObjectPathInner<'a>

Source§

fn clone(&self) -> ObjectPathInner<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for ObjectPathInner<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ObjectPathInner<'_>

Source§

fn default() -> Self

默认值

let path = ObjectPath::default();
assert!(path == "");
Source§

impl Display for ObjectPathInner<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: PointerFamily> From<Object<T>> for ObjectPathInner<'static>

Source§

fn from(obj: Object<T>) -> Self

Converts to this type from the input type.
Source§

impl FromStr for ObjectPathInner<'_>

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

use std::str::FromStr;
let path: ObjectPath = "img1.jpg".parse().unwrap();
assert!(path == "img1.jpg");
assert!(ObjectPath::from_str("abc.jpg").is_ok());
assert!(ObjectPath::from_str("abc/def.jpg").is_ok());
assert!(ObjectPath::from_str("/").is_err());
assert!(ObjectPath::from_str("/abc").is_err());
assert!(ObjectPath::from_str("abc/").is_err());
assert!(ObjectPath::from_str(".abc").is_err());
assert!(ObjectPath::from_str("../abc").is_err());
assert!(ObjectPath::from_str(r"aaa\abc").is_err());
Source§

type Err = InvalidObjectPath

The associated error which can be returned from parsing.
Source§

impl GetStdWithPath<ObjectPathInner<'static>> for ClientArc

§用于在 Client 上对文件进行操作

文件路径可以是 ObjectPath 类型

Source§

fn get_std_with_path( &self, path: ObjectPath, ) -> Option<(Url, CanonicalizedResource)>

根据 path 获取 UrlCanonicalizedResource
Source§

impl GetStdWithPath<ObjectPathInner<'static>> for ClientRc

§用于在 Client 上对文件进行操作

文件路径可以是 ObjectPath 类型

Source§

fn get_std_with_path( &self, path: ObjectPath, ) -> Option<(Url, CanonicalizedResource)>

根据 path 获取 UrlCanonicalizedResource
Source§

impl<'a> Hash for ObjectPathInner<'a>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq<&str> for ObjectPathInner<'_>

Source§

fn eq(&self, other: &&str) -> bool

相等比较

let path = ObjectPath::new("abc").unwrap();
assert!(path == "abc");
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<ObjectPathInner<'_>> for &str

Source§

fn eq(&self, other: &ObjectPathInner<'_>) -> bool

相等比较

let path = ObjectPath::new("abc").unwrap();
assert!("abc" == path);
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<ObjectPathInner<'_>> for String

Source§

fn eq(&self, other: &ObjectPathInner<'_>) -> bool

相等比较

let path = ObjectPath::new("abc").unwrap();
assert!("abc".to_string() == path);
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<String> for ObjectPathInner<'_>

Source§

fn eq(&self, other: &String) -> bool

相等比较

let path = ObjectPath::new("abc").unwrap();
assert!(path == "abc".to_string());
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> PartialEq for ObjectPathInner<'a>

Source§

fn eq(&self, other: &ObjectPathInner<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&[u8]> for ObjectPathInner<'_>

Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

fn try_from(value: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<&Path> for ObjectPathInner<'_>

Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

fn try_from(value: &Path) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<&String> for ObjectPathInner<'_>

Source§

fn try_from(val: &String) -> Result<Self, Self::Error>

let str = String::from("abc");
let str_p = &str;
let path: ObjectPath = str_p.try_into().unwrap();
assert!(path == "abc");
Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

impl<'a: 'b, 'b> TryFrom<&'a str> for ObjectPathInner<'b>

Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

fn try_from(val: &'a str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Box<String>> for ObjectPathInner<'_>

Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

fn try_from(val: Box<String>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<String> for ObjectPathInner<'_>

Source§

fn try_from(val: String) -> Result<Self, Self::Error>

let path: ObjectPath = String::from("abc").try_into().unwrap();
assert!(path == "abc");
Source§

type Error = InvalidObjectPath

The type returned in the event of a conversion error.
Source§

impl<'a> Eq for ObjectPathInner<'a>

Source§

impl<'a> StructuralPartialEq for ObjectPathInner<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ObjectPathInner<'a>

§

impl<'a> RefUnwindSafe for ObjectPathInner<'a>

§

impl<'a> Send for ObjectPathInner<'a>

§

impl<'a> Sync for ObjectPathInner<'a>

§

impl<'a> Unpin for ObjectPathInner<'a>

§

impl<'a> UnwindSafe for ObjectPathInner<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<B> GetStdWithPath<&ObjectPathInner<'static>> for B
where B: AsRef<BucketBase>,

Source§

fn get_std_with_path( &self, path: &ObjectPathInner<'static>, ) -> Option<(Url, InnerCanonicalizedResource<'static>)>

根据 path 获取 UrlCanonicalizedResource
Source§

impl<B> GetStdWithPath<ObjectPathInner<'static>> for B
where B: AsRef<BucketBase>,

Source§

fn get_std_with_path( &self, path: ObjectPathInner<'static>, ) -> Option<(Url, InnerCanonicalizedResource<'static>)>

根据 path 获取 UrlCanonicalizedResource
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,