pub struct CollectionName(/* private fields */);Expand description
A strongly typed database identifier wrapper: CollectionName.
Implementations§
Source§impl CollectionName
impl CollectionName
Sourcepub fn new(input: impl AsRef<str>) -> Result<CollectionName, DatabaseNameError>
pub fn new(input: impl AsRef<str>) -> Result<CollectionName, DatabaseNameError>
Creates a database identifier from non-empty text.
§Errors
Returns DatabaseNameError when the value is empty or contains control characters.
Sourcepub fn into_string(self) -> String
pub fn into_string(self) -> String
Consumes the identifier and returns the owned string.
Trait Implementations§
Source§impl AsRef<str> for CollectionName
impl AsRef<str> for CollectionName
Source§impl Clone for CollectionName
impl Clone for CollectionName
Source§fn clone(&self) -> CollectionName
fn clone(&self) -> CollectionName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionName
impl Debug for CollectionName
Source§impl Display for CollectionName
impl Display for CollectionName
Source§impl FromStr for CollectionName
impl FromStr for CollectionName
Source§type Err = DatabaseNameError
type Err = DatabaseNameError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<CollectionName, <CollectionName as FromStr>::Err>
fn from_str( input: &str, ) -> Result<CollectionName, <CollectionName as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for CollectionName
impl Hash for CollectionName
Source§impl Ord for CollectionName
impl Ord for CollectionName
Source§fn cmp(&self, other: &CollectionName) -> Ordering
fn cmp(&self, other: &CollectionName) -> Ordering
1.21.0 (const: unstable) · 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 for CollectionName
impl PartialEq for CollectionName
Source§fn eq(&self, other: &CollectionName) -> bool
fn eq(&self, other: &CollectionName) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CollectionName
impl PartialOrd for CollectionName
Source§impl TryFrom<&str> for CollectionName
impl TryFrom<&str> for CollectionName
Source§type Error = DatabaseNameError
type Error = DatabaseNameError
The type returned in the event of a conversion error.
Source§fn try_from(
value: &str,
) -> Result<CollectionName, <CollectionName as TryFrom<&str>>::Error>
fn try_from( value: &str, ) -> Result<CollectionName, <CollectionName as TryFrom<&str>>::Error>
Performs the conversion.
impl Eq for CollectionName
impl StructuralPartialEq for CollectionName
Auto Trait Implementations§
impl Freeze for CollectionName
impl RefUnwindSafe for CollectionName
impl Send for CollectionName
impl Sync for CollectionName
impl Unpin for CollectionName
impl UnsafeUnpin for CollectionName
impl UnwindSafe for CollectionName
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