Enum tarantool_rs::schema::SystemSpacesId
source · #[repr(u32)]pub enum SystemSpacesId {
VSpace,
VIndex,
}
Expand description
Ids of system spaces and views.
According to Tarantool sources
this values are fixed and all have an id in reserved range [256, 511]
.
Variants§
Trait Implementations§
source§impl Clone for SystemSpacesId
impl Clone for SystemSpacesId
source§fn clone(&self) -> SystemSpacesId
fn clone(&self) -> SystemSpacesId
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 SystemSpacesId
impl Debug for SystemSpacesId
source§impl<'de> Deserialize<'de> for SystemSpacesId
impl<'de> Deserialize<'de> for SystemSpacesId
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 Hash for SystemSpacesId
impl Hash for SystemSpacesId
source§impl PartialEq<SystemSpacesId> for SystemSpacesId
impl PartialEq<SystemSpacesId> for SystemSpacesId
source§fn eq(&self, other: &SystemSpacesId) -> bool
fn eq(&self, other: &SystemSpacesId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SystemSpacesId
impl Serialize for SystemSpacesId
impl Copy for SystemSpacesId
impl Eq for SystemSpacesId
impl StructuralEq for SystemSpacesId
impl StructuralPartialEq for SystemSpacesId
Auto Trait Implementations§
impl RefUnwindSafe for SystemSpacesId
impl Send for SystemSpacesId
impl Sync for SystemSpacesId
impl Unpin for SystemSpacesId
impl UnwindSafe for SystemSpacesId
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