Struct bonsaidb_core::schema::SchemaName
source · [−]Expand description
The name of a Schema.
Fields
The authority of this schema.
name: NameThe name of this schema.
Implementations
sourceimpl SchemaName
impl SchemaName
sourcepub fn private<N: Into<Name>>(name: N) -> Self
pub fn private<N: Into<Name>>(name: N) -> Self
Creates a name for a Schema 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 schema name.
sourcepub fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError>
pub fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError>
Parses a schema 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 schema name such that the authority and name can be
safely parsed using Self::parse_encoded.
Trait Implementations
sourceimpl Clone for SchemaName
impl Clone for SchemaName
sourcefn clone(&self) -> SchemaName
fn clone(&self) -> SchemaName
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 SchemaName
impl Debug for SchemaName
sourceimpl<'de> Deserialize<'de> for SchemaName
impl<'de> Deserialize<'de> for SchemaName
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 SchemaName
impl Display for SchemaName
sourceimpl Hash for SchemaName
impl Hash for SchemaName
sourceimpl Ord for SchemaName
impl Ord for SchemaName
sourceimpl PartialEq<SchemaName> for SchemaName
impl PartialEq<SchemaName> for SchemaName
sourcefn eq(&self, other: &SchemaName) -> bool
fn eq(&self, other: &SchemaName) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SchemaName) -> bool
fn ne(&self, other: &SchemaName) -> bool
This method tests for !=.
sourceimpl PartialOrd<SchemaName> for SchemaName
impl PartialOrd<SchemaName> for SchemaName
sourcefn partial_cmp(&self, other: &SchemaName) -> Option<Ordering>
fn partial_cmp(&self, other: &SchemaName) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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
sourceimpl Serialize for SchemaName
impl Serialize for SchemaName
impl Eq for SchemaName
impl StructuralEq for SchemaName
impl StructuralPartialEq for SchemaName
Auto Trait Implementations
impl RefUnwindSafe for SchemaName
impl Send for SchemaName
impl Sync for SchemaName
impl Unpin for SchemaName
impl UnwindSafe for SchemaName
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more