Struct bonsaidb::core::schema::CollectionName
pub struct CollectionName(_);
Expand description
The namespaced name of a Collection
.
Trait Implementations§
§impl Clone for CollectionName
impl Clone for CollectionName
§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 more§impl Debug for CollectionName
impl Debug for CollectionName
§impl Deref for CollectionName
impl Deref for CollectionName
§type Target = QualifiedName
type Target = QualifiedName
The resulting type after dereferencing.
§fn deref(&self) -> &<CollectionName as Deref>::Target
fn deref(&self) -> &<CollectionName as Deref>::Target
Dereferences the value.
§impl<'de> Deserialize<'de> for CollectionName
impl<'de> Deserialize<'de> for CollectionName
§fn deserialize<__D>(
__deserializer: __D
) -> Result<CollectionName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CollectionName, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for CollectionName
impl Display for CollectionName
§impl From<CollectionName> for SchemaName
impl From<CollectionName> for SchemaName
§fn from(name: CollectionName) -> SchemaName
fn from(name: CollectionName) -> SchemaName
Converts to this type from the input type.
§impl FromStr for CollectionName
impl FromStr for CollectionName
§type Err = InvalidNameError
type Err = InvalidNameError
The associated error which can be returned from parsing.
§fn from_str(s: &str) -> Result<CollectionName, <CollectionName as FromStr>::Err>
fn from_str(s: &str) -> Result<CollectionName, <CollectionName as FromStr>::Err>
Parses a string
s
to return a value of this type. Read more§impl Hash for CollectionName
impl Hash for CollectionName
§impl Ord for CollectionName
impl Ord for CollectionName
§impl PartialEq<CollectionName> for CollectionName
impl PartialEq<CollectionName> for CollectionName
§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 ==
.§impl PartialOrd<CollectionName> for CollectionName
impl PartialOrd<CollectionName> for CollectionName
§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 more§impl Qualified for CollectionName
impl Qualified for CollectionName
§fn new<A, N>(authority: A, name: N) -> CollectionNamewhere
A: Into<Authority>,
N: Into<Name>,
fn new<A, N>(authority: A, name: N) -> CollectionNamewhere A: Into<Authority>, N: Into<Name>,
Creates a new qualified name.
§fn private<N>(name: N) -> Selfwhere
N: Into<Name>,
fn private<N>(name: N) -> Selfwhere N: Into<Name>,
Creates a name that is not meant to be shared with other developers or
projects.
§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 more§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
.§impl Serialize for CollectionName
impl Serialize for CollectionName
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.