Struct iroh_sync::store::memory::Store

source ·
pub struct Store { /* private fields */ }
Expand description

Manages the replicas and authors for an instance.

Trait Implementations§

source§

impl Clone for Store

source§

fn clone(&self) -> Store

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Store

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Store

source§

fn default() -> Store

Returns the “default value” for a type. Read more
source§

impl Store for Store

source§

fn content_hashes(&self) -> Result<Self::ContentHashesIter<'_>>

Get all content hashes of all replicas in the store.

§

type Instance = ReplicaStoreInstance

The specialized instance scoped to a Namespace.
§

type GetIter<'a> = RangeIterator<'a>

Iterator over entries in the store, returned from Self::get_many
§

type ContentHashesIter<'a> = ContentHashesIterator<'a>

Iterator over all content hashes in the store, returned from Self::content_hashes
§

type AuthorsIter<'a> = IntoIter<Result<Author, Error>>

Iterator over authors in the store, returned from Self::list_authors
§

type NamespaceIter<'a> = IntoIter<Result<NamespaceId, Error>>

Iterator over replica namespaces in the store, returned from Self::list_namespaces
§

type PeersIter<'a> = IntoIter<[u8; 32]>

Iterator over peers in the store for a document, returned from Self::get_sync_peers.
source§

fn open_replica( &self, namespace: &NamespaceId ) -> Result<Option<Replica<Self::Instance>>>

Open a replica from this store. Read more
source§

fn close_replica(&self, namespace_id: &NamespaceId)

Close a replica. Read more
source§

fn list_namespaces(&self) -> Result<Self::NamespaceIter<'_>>

List all replica namespaces in this store.
source§

fn get_author(&self, author: &AuthorId) -> Result<Option<Author>>

Get an author key from the store.
source§

fn import_author(&self, author: Author) -> Result<()>

Import an author key pair.
source§

fn list_authors(&self) -> Result<Self::AuthorsIter<'_>>

List all author keys in this store.
source§

fn new_replica( &self, namespace: Namespace ) -> Result<Replica<ReplicaStoreInstance>>

Create a new replica for namespace and persist in this store.
source§

fn remove_replica(&self, namespace: &NamespaceId) -> Result<()>

Remove a replica. Read more
source§

fn get_many( &self, namespace: NamespaceId, filter: GetFilter ) -> Result<Self::GetIter<'_>>

Get an iterator over entries of a replica. Read more
source§

fn get_one( &self, namespace: NamespaceId, author: AuthorId, key: impl AsRef<[u8]> ) -> Result<Option<SignedEntry>>

Get an entry by key and author.
source§

fn register_useful_peer( &self, namespace: NamespaceId, peer: PeerIdBytes ) -> Result<()>

Register a peer that has been useful to sync a document.
source§

fn get_sync_peers( &self, namespace: &NamespaceId ) -> Result<Option<Self::PeersIter<'_>>>

Get peers to use for syncing a document.
source§

fn new_author<R: CryptoRngCore + ?Sized>(&self, rng: &mut R) -> Result<Author>

Create a new author key and persist it in the store.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Store

§

impl Send for Store

§

impl Sync for Store

§

impl Unpin for Store

§

impl !UnwindSafe for Store

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more