pub enum StoreRepoV0 {
PublicStore(RepoId),
ProtectedStore(RepoId),
PrivateStore(RepoId),
Group(RepoId),
Dialog((RepoId, Digest)),
}
Expand description
List of Store Root Repo types
Variants§
PublicStore(RepoId)
ProtectedStore(RepoId)
PrivateStore(RepoId)
Group(RepoId)
Dialog((RepoId, Digest))
Trait Implementations§
Source§impl Clone for StoreRepoV0
impl Clone for StoreRepoV0
Source§fn clone(&self) -> StoreRepoV0
fn clone(&self) -> StoreRepoV0
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 StoreRepoV0
impl Debug for StoreRepoV0
Source§impl<'de> Deserialize<'de> for StoreRepoV0
impl<'de> Deserialize<'de> for StoreRepoV0
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 StoreRepoV0
impl Hash for StoreRepoV0
Source§impl PartialEq for StoreRepoV0
impl PartialEq for StoreRepoV0
Source§impl Serialize for StoreRepoV0
impl Serialize for StoreRepoV0
impl Copy for StoreRepoV0
impl Eq for StoreRepoV0
impl StructuralPartialEq for StoreRepoV0
Auto Trait Implementations§
impl Freeze for StoreRepoV0
impl RefUnwindSafe for StoreRepoV0
impl Send for StoreRepoV0
impl Sync for StoreRepoV0
impl Unpin for StoreRepoV0
impl UnwindSafe for StoreRepoV0
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