pub struct FilesystemStore { /* private fields */ }
Expand description

A KVStore implementation that writes to and reads from the file system.

Implementations§

source§

impl FilesystemStore

source

pub fn new(data_dir: PathBuf) -> Self

Constructs a new FilesystemStore.

source

pub fn get_data_dir(&self) -> PathBuf

Returns the data directory.

Trait Implementations§

source§

impl KVStore for FilesystemStore

source§

fn read( &self, primary_namespace: &str, secondary_namespace: &str, key: &str ) -> Result<Vec<u8>>

Returns the data stored for the given primary_namespace, secondary_namespace, and key. Read more
source§

fn write( &self, primary_namespace: &str, secondary_namespace: &str, key: &str, buf: &[u8] ) -> Result<()>

Persists the given data under the given key. Read more
source§

fn remove( &self, primary_namespace: &str, secondary_namespace: &str, key: &str, lazy: bool ) -> Result<()>

Removes any data that had previously been persisted under the given key. Read more
source§

fn list( &self, primary_namespace: &str, secondary_namespace: &str ) -> Result<Vec<String>>

Returns a list of keys that are stored under the given secondary_namespace in primary_namespace. Read more

Auto Trait Implementations§

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
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, 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<ChannelSigner, K> Persist<ChannelSigner> for K
where ChannelSigner: WriteableEcdsaChannelSigner, K: KVStore,

source§

fn persist_new_channel( &self, funding_txo: OutPoint, monitor: &ChannelMonitor<ChannelSigner>, _update_id: MonitorUpdateId ) -> ChannelMonitorUpdateStatus

Persist a new channel’s data in response to a chain::Watch::watch_channel call. This is called by ChannelManager for new channels, or may be called directly, e.g. on startup. Read more
source§

fn update_persisted_channel( &self, funding_txo: OutPoint, _update: Option<&ChannelMonitorUpdate>, monitor: &ChannelMonitor<ChannelSigner>, _update_id: MonitorUpdateId ) -> ChannelMonitorUpdateStatus

Update one channel’s data. The provided ChannelMonitor has already applied the given update. Read more
source§

impl<'a, A, M, T, ES, NS, SP, F, R, L, S> Persister<'a, M, T, ES, NS, SP, F, R, L, S> for A
where A: KVStore, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref, S: WriteableScore<'a>, <M as Deref>::Target: 'static + Watch<<<SP as Deref>::Target as SignerProvider>::EcdsaSigner>, <T as Deref>::Target: 'static + BroadcasterInterface, <ES as Deref>::Target: 'static + EntropySource, <NS as Deref>::Target: 'static + NodeSigner, <SP as Deref>::Target: 'static + SignerProvider, <F as Deref>::Target: 'static + FeeEstimator, <R as Deref>::Target: 'static + Router, <L as Deref>::Target: 'static + Logger,

source§

fn persist_manager( &self, channel_manager: &ChannelManager<M, T, ES, NS, SP, F, R, L> ) -> Result<(), Error>

Persist the given ChannelManager to disk, returning an error if persistence failed.

source§

fn persist_graph(&self, network_graph: &NetworkGraph<L>) -> Result<(), Error>

Persist the given NetworkGraph to disk, returning an error if persistence failed.

source§

fn persist_scorer(&self, scorer: &S) -> Result<(), Error>

Persist the given WriteableScore to disk, returning an error if persistence failed.

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.