Enum holochain_sqlite::error::DatabaseError
source · pub enum DatabaseError {
Show 17 variants
EnvironmentDoubleInitialized(PathBuf),
DatabaseMissing(PathBuf),
NoPrivateDb(String),
MsgPackEncodeError(Error),
MsgPackDecodeError(Error),
SerializedBytes(SerializedBytesError),
Other(Error),
SqliteError(Error),
DirectoryError(Error),
DbConnectionPoolError(Error),
EmptyKey,
InvalidKeyRange,
KeyConstruction,
FailedToJoinBlocking(JoinError),
Timestamp(TimestampError),
GetRandom(Error),
Timeout(Elapsed),
}Variants§
EnvironmentDoubleInitialized(PathBuf)
DatabaseMissing(PathBuf)
NoPrivateDb(String)
MsgPackEncodeError(Error)
MsgPackDecodeError(Error)
SerializedBytes(SerializedBytesError)
Other(Error)
SqliteError(Error)
DirectoryError(Error)
DbConnectionPoolError(Error)
EmptyKey
InvalidKeyRange
KeyConstruction
FailedToJoinBlocking(JoinError)
Timestamp(TimestampError)
GetRandom(Error)
Timeout(Elapsed)
Trait Implementations§
source§impl Debug for DatabaseError
impl Debug for DatabaseError
source§impl Display for DatabaseError
impl Display for DatabaseError
source§impl Error for DatabaseError
impl Error for DatabaseError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<Elapsed> for DatabaseError
impl From<Elapsed> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<Error> for DatabaseError
impl From<Error> for DatabaseError
source§impl From<JoinError> for DatabaseError
impl From<JoinError> for DatabaseError
source§impl From<SerializedBytesError> for DatabaseError
impl From<SerializedBytesError> for DatabaseError
source§fn from(source: SerializedBytesError) -> Self
fn from(source: SerializedBytesError) -> Self
Converts to this type from the input type.
source§impl From<TimestampError> for DatabaseError
impl From<TimestampError> for DatabaseError
source§fn from(timestamp_error: TimestampError) -> Self
fn from(timestamp_error: TimestampError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabaseError
impl !RefUnwindSafe for DatabaseError
impl Send for DatabaseError
impl Sync for DatabaseError
impl Unpin for DatabaseError
impl !UnwindSafe for DatabaseError
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.source§impl<T> Upcastable for T
impl<T> Upcastable for T
source§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
source§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref