Struct BucketName

Source
pub struct BucketName(/* private fields */);
Expand description

存储 bucket 名字的类型

Implementations§

Source§

impl<'a> BucketName

Source

pub fn new( bucket: impl Into<Cow<'static, str>>, ) -> Result<Self, InvalidBucketName>

Creates a new BucketName from the given string. 只允许小写字母、数字、短横线(-),且不能以短横线开头或结尾


assert!(BucketName::new("").is_err());
assert!(BucketName::new("abc").is_ok());
assert!(BucketName::new("abc-").is_err());
assert!(BucketName::new("-abc").is_err());
assert!(BucketName::new("abc-def234ab").is_ok());
assert!(BucketName::new("abc-def*#$%^ab").is_err());
Source

pub fn from_env() -> Result<Self, InvalidBucketName>

use env init BucketName

Source

pub fn from_static(bucket: &'a str) -> Result<Self, InvalidBucketName>

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


assert!(BucketName::from_static("").is_err());
assert!(BucketName::from_static("abc").is_ok());
assert!(BucketName::from_static("abc-").is_err());
assert!(BucketName::from_static("-abc").is_err());
assert!(BucketName::from_static("abc-def234ab").is_ok());
assert!(BucketName::from_static("abc-def*#$%^ab").is_err());
Source

pub const unsafe fn from_static2(bucket: &'static str) -> Self

§Safety

Trait Implementations§

Source§

impl AsMut<BucketName> for BucketBase

Source§

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

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

impl<M> AsMut<BucketName> for Client<M>

Source§

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

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

impl<T: PointerFamily> AsRef<BucketName> for Bucket<T>

Source§

fn as_ref(&self) -> &BucketName

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

impl AsRef<BucketName> for BucketBase

Source§

fn as_ref(&self) -> &BucketName

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

impl<M> AsRef<BucketName> for Client<M>

Source§

fn as_ref(&self) -> &BucketName

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

impl AsRef<BucketName> for Config

Source§

fn as_ref(&self) -> &BucketName

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

impl<T: PointerFamily, Item> AsRef<BucketName> for ObjectList<T, Item>

Source§

fn as_ref(&self) -> &BucketName

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

impl AsRef<str> for BucketName

Source§

fn as_ref(&self) -> &str

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

impl Clone for BucketName

Source§

fn clone(&self) -> BucketName

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 Debug for BucketName

Source§

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

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

impl Default for BucketName

Source§

fn default() -> BucketName

Returns the “default value” for a type. Read more
Source§

impl Display for BucketName

Source§

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

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

impl FromStr for BucketName

Source§

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

let b: BucketName = "abc".parse().unwrap();
assert_eq!(b, BucketName::new("abc").unwrap());
Source§

type Err = InvalidBucketName

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

impl Hash for BucketName

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 BucketName

Source§

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

相等比较

let path = BucketName::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<BucketName> for &str

Source§

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

相等比较

let path = BucketName::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 for BucketName

Source§

fn eq(&self, other: &BucketName) -> 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<'a> TryFrom<&'a str> for BucketName

Source§

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

let b: BucketName = "abc".try_into().unwrap();
assert_eq!(b, BucketName::new("abc").unwrap());
Source§

type Error = InvalidBucketName

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

impl TryFrom<String> for BucketName

Source§

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

let b: BucketName = String::from("abc").try_into().unwrap();
assert_eq!(b, BucketName::new("abc").unwrap());
Source§

type Error = InvalidBucketName

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

impl Eq for BucketName

Source§

impl StructuralPartialEq for BucketName

Auto Trait Implementations§

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,