pub enum FileStoreError {
Load(AggregateChangesetsError<ChangeSet>),
Write(Error),
}
Expand description
Error for [bdk_file_store
]’s implementation of WalletPersister
.
Variants§
Load(AggregateChangesetsError<ChangeSet>)
Error when loading from the store.
Write(Error)
Error when writing to the store.
Trait Implementations§
Source§impl Debug for FileStoreError
impl Debug for FileStoreError
Source§impl Display for FileStoreError
impl Display for FileStoreError
Source§impl Error for FileStoreError
impl Error for FileStoreError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl !Freeze for FileStoreError
impl !RefUnwindSafe for FileStoreError
impl Send for FileStoreError
impl Sync for FileStoreError
impl Unpin for FileStoreError
impl !UnwindSafe for FileStoreError
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