Struct ObjectDir

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

OSS Object 对象路径的前缀目录 不带前缀 /, 且必须以 / 结尾

Implementations§

Source§

impl<'a> ObjectDir<'a>

Source

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

Creates a new ObjectPath from the given string.

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

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

§Safety

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

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

Trait Implementations§

Source§

impl<'dir1, 'dir2: 'dir1> Add<ObjectDir<'dir2>> for ObjectDir<'dir1>

Source§

fn add(self, rhs: ObjectDir<'dir2>) -> Self::Output

§支持 ObjectDir 相加运算
let dir1 = ObjectDir::new("dir1/").unwrap();
let dir2 = ObjectDir::new("dir2/").unwrap();
let full_dir = ObjectDir::new("dir1/dir2/").unwrap();

assert_eq!(dir1 + dir2, full_dir);
Source§

type Output = ObjectDir<'dir1>

The resulting type after applying the + operator.
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<'dir1, 'dir2: 'dir1> AddAssign<ObjectDir<'dir2>> for ObjectDir<'dir1>

Source§

fn add_assign(&mut self, rhs: ObjectDir<'dir2>)

§支持 ObjectDir 相加运算
let mut dir1 = ObjectDir::new("dir1/").unwrap();
let dir2 = ObjectDir::new("dir2/").unwrap();
let full_dir = ObjectDir::new("dir1/dir2/").unwrap();

dir1 += dir2;
assert_eq!(dir1, full_dir);
Source§

impl AsMut<String> for ObjectDir<'_>

Source§

fn as_mut(&mut self) -> &mut String

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

impl AsRef<str> for ObjectDir<'_>

Source§

fn as_ref(&self) -> &str

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

impl<'a> Clone for ObjectDir<'a>

Source§

fn clone(&self) -> ObjectDir<'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 ObjectDir<'a>

Source§

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

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

impl Display for ObjectDir<'_>

Source§

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

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

impl FromStr for ObjectDir<'_>

Source§

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

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

type Err = InvalidObjectDir

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

impl<'a> Hash for ObjectDir<'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 ObjectDir<'_>

Source§

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

相等比较

let path = ObjectDir::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<ObjectDir<'_>> for &str

Source§

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

相等比较

let path = ObjectDir::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<ObjectDir<'_>> for String

Source§

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

相等比较

let path = ObjectDir::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 ObjectDir<'_>

Source§

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

相等比较

let path = ObjectDir::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 ObjectDir<'a>

Source§

fn eq(&self, other: &ObjectDir<'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<&Path> for ObjectDir<'_>

Source§

type Error = InvalidObjectDir

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<'a: 'b, 'b> TryFrom<&'a str> for ObjectDir<'b>

Source§

type Error = InvalidObjectDir

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<String> for ObjectDir<'_>

Source§

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

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

type Error = InvalidObjectDir

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

impl<'a> Eq for ObjectDir<'a>

Source§

impl<'a> StructuralPartialEq for ObjectDir<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ObjectDir<'a>

§

impl<'a> RefUnwindSafe for ObjectDir<'a>

§

impl<'a> Send for ObjectDir<'a>

§

impl<'a> Sync for ObjectDir<'a>

§

impl<'a> Unpin for ObjectDir<'a>

§

impl<'a> UnwindSafe for ObjectDir<'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<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,