Struct bonsaidb_core::schema::CollectionName
source · [−]Expand description
The namespaced name of a Collection
.
Fields
The authority of this collection. This name is used to ensure collections from multiple authors/authorities can be used in the same schema.
name: Name
The name of this collection. Must be unique within the Schema
Implementations
sourceimpl CollectionName
impl CollectionName
sourcepub fn private<N: Into<Name>>(name: N) -> Self
pub fn private<N: Into<Name>>(name: N) -> Self
Creates a name for a Collection
that is not meant
to be shared with other developers.
sourcepub fn new<A: Into<Authority>, N: Into<Name>>(authority: A, name: N) -> Self
pub fn new<A: Into<Authority>, N: Into<Name>>(authority: A, name: N) -> Self
Creates a new collection name.
sourcepub fn parse_encoded(collection_name: &str) -> Result<Self, InvalidNameError>
pub fn parse_encoded(collection_name: &str) -> Result<Self, InvalidNameError>
Parses a colleciton name that was previously encoded via
Self::encoded()
.
Errors
Returns InvalidNameError
if the name contains invalid escape
sequences or contains more than two periods.
sourcepub fn encoded(&self) -> String
pub fn encoded(&self) -> String
Encodes this collection name such that the authority and name can be
safely parsed using Self::parse_encoded
.
Trait Implementations
sourceimpl Clone for CollectionName
impl Clone for CollectionName
sourcefn clone(&self) -> CollectionName
fn clone(&self) -> CollectionName
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CollectionName
impl Debug for CollectionName
sourceimpl<'de> Deserialize<'de> for CollectionName
impl<'de> Deserialize<'de> for CollectionName
sourcefn 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
sourceimpl Display for CollectionName
impl Display for CollectionName
sourceimpl Hash for CollectionName
impl Hash for CollectionName
sourceimpl PartialEq<CollectionName> for CollectionName
impl PartialEq<CollectionName> for CollectionName
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &CollectionName) -> bool
fn ne(&self, other: &CollectionName) -> bool
This method tests for !=
.
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more