pub enum StoreOverlay {
V0(StoreOverlayV0),
OwnV0(StoreOverlayV0),
}
Variants§
V0(StoreOverlayV0)
OwnV0(StoreOverlayV0)
Implementations§
Source§impl StoreOverlay
impl StoreOverlay
pub fn from_store_repo( store_repo: &StoreRepo, overlay_branch: BranchId, ) -> StoreOverlay
pub fn overlay_id_for_read_purpose(&self) -> OverlayId
pub fn overlay_id_for_write_purpose( &self, store_overlay_branch_readcap_secret: ReadCapSecret, ) -> OverlayId
Trait Implementations§
Source§impl Clone for StoreOverlay
impl Clone for StoreOverlay
Source§fn clone(&self) -> StoreOverlay
fn clone(&self) -> StoreOverlay
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 StoreOverlay
impl Debug for StoreOverlay
Source§impl<'de> Deserialize<'de> for StoreOverlay
impl<'de> Deserialize<'de> for StoreOverlay
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 Display for StoreOverlay
impl Display for StoreOverlay
Source§impl From<&StoreRepo> for StoreOverlay
impl From<&StoreRepo> for StoreOverlay
Source§impl Hash for StoreOverlay
impl Hash for StoreOverlay
Source§impl PartialEq for StoreOverlay
impl PartialEq for StoreOverlay
Source§impl Serialize for StoreOverlay
impl Serialize for StoreOverlay
impl Copy for StoreOverlay
impl Eq for StoreOverlay
impl StructuralPartialEq for StoreOverlay
Auto Trait Implementations§
impl Freeze for StoreOverlay
impl RefUnwindSafe for StoreOverlay
impl Send for StoreOverlay
impl Sync for StoreOverlay
impl Unpin for StoreOverlay
impl UnwindSafe for StoreOverlay
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