Struct bonsaidb_core::schema::CollectionName
source · pub struct CollectionName(_);
Expand description
The namespaced name of a Collection
.
Trait Implementations§
source§impl Clone for CollectionName
impl Clone for CollectionName
source§fn clone(&self) -> CollectionName
fn clone(&self) -> CollectionName
Returns a copy of the value. Read more
1.0.0 · 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 Deref for CollectionName
impl Deref for CollectionName
source§impl<'de> Deserialize<'de> for CollectionName
impl<'de> Deserialize<'de> for CollectionName
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for CollectionName
impl Display for CollectionName
source§impl From<CollectionName> for SchemaName
impl From<CollectionName> for SchemaName
source§fn from(name: CollectionName) -> Self
fn from(name: CollectionName) -> Self
Converts to this type from the input type.
source§impl FromStr for CollectionName
impl FromStr for CollectionName
source§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 · 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<CollectionName> for CollectionName
impl PartialEq<CollectionName> for CollectionName
source§fn eq(&self, other: &CollectionName) -> bool
fn eq(&self, other: &CollectionName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CollectionName> for CollectionName
impl PartialOrd<CollectionName> for CollectionName
source§fn partial_cmp(&self, other: &CollectionName) -> Option<Ordering>
fn partial_cmp(&self, other: &CollectionName) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Qualified for CollectionName
impl Qualified for CollectionName
source§fn new<A: Into<Authority>, N: Into<Name>>(authority: A, name: N) -> Self
fn new<A: Into<Authority>, N: Into<Name>>(authority: A, name: N) -> Self
Creates a new qualified name.
source§fn private<N: Into<Name>>(name: N) -> Self
fn private<N: Into<Name>>(name: N) -> Self
Creates a name that is not meant to be shared with other developers or
projects.
source§fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError>
fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError>
Parses a schema name that was previously encoded via
Self::encoded()
. Read moresource§fn encoded(&self) -> String
fn encoded(&self) -> String
Encodes this schema name such that the authority and name can be
safely parsed using
Self::parse_encoded
.source§impl Serialize for CollectionName
impl Serialize for CollectionName
impl Eq for CollectionName
impl StructuralEq for CollectionName
impl StructuralPartialEq for CollectionName
Auto Trait Implementations§
impl RefUnwindSafe for CollectionName
impl Send for CollectionName
impl Sync for CollectionName
impl Unpin 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