pub enum MessagingError {
Show 81 variants
NodeDatabaseError(NdbError),
ListsTablesPropertiesError(LtpError),
FailedToLockFile,
InvalidEntryIdFlags(u32),
StoreRecordKeyNotFound,
InvalidStoreRecordKey(PropertyType),
InvalidStoreRecordKeySize(usize),
StoreRootHierarchyTableFailed(String),
StoreOpenFolder(String),
StoreNamedPropertyMap(String),
StoreSearchUpdateQueue(String),
StoreDisplayNameNotFound,
InvalidStoreDisplayName(PropertyType),
StoreIpmSubTreeEntryIdNotFound,
InvalidStoreIpmSubTreeEntryId(PropertyType),
StoreIpmWastebasketEntryIdNotFound,
InvalidStoreIpmWastebasketEntryId(PropertyType),
StoreFinderEntryIdNotFound,
InvalidStoreFinderEntryId(PropertyType),
EntryIdWrongStore,
FolderDisplayNameNotFound,
InvalidFolderDisplayName(PropertyType),
FolderContentCountNotFound,
InvalidFolderContentCount(PropertyType),
FolderUnreadCountNotFound,
InvalidFolderUnreadCount(PropertyType),
FolderHasSubfoldersNotFound,
InvalidFolderHasSubfolders(PropertyType),
InvalidFolderEntryIdType(NodeIdType),
MessageClassNotFound,
InvalidMessageClass(PropertyType),
MessageFlagsNotFound,
InvalidMessageFlags(PropertyType),
MessageSizeNotFound,
InvalidMessageSize(PropertyType),
MessageStatusNotFound,
InvalidMessageStatus(PropertyType),
MessageCreationTimeNotFound,
InvalidMessageCreationTime(PropertyType),
MessageLastModificationTimeNotFound,
InvalidMessageLastModificationTime(PropertyType),
MessageSearchKeyNotFound,
InvalidMessageSearchKey(PropertyType),
InvalidMessageEntryIdType(NodeIdType),
MessageSubNodeTreeNotFound,
MultipleMessageRecipientTables,
MultipleMessageAttachmentTables,
AttachmentSizeNotFound,
InvalidAttachmentSize(PropertyType),
AttachmentMethodNotFound,
InvalidAttachmentMethod(PropertyType),
AttachmentRenderingPositionNotFound,
InvalidAttachmentRenderingPosition(PropertyType),
InvalidAttachmentNodeIdType(NodeIdType),
UnknownAttachmentMethod(i32),
AttachmentSubNodeNotFound(NodeId),
AttachmentMessageObjectDataNotFound,
InvalidMessageObjectData(PropertyType),
AttachmentFileBinaryDataNotFound,
InvalidAttachmentFileBinaryData(PropertyType),
AttachmentStorageObjectDataNotFound,
AttachmentStorageRead(String),
InvalidStorageObjectData(PropertyType),
NamedPropertyMapGuidIndexOutOfBounds(u16),
NamedPropertyMapPropertyIndexOutOfBounds(u16),
NamedPropertyMapBucketCountOutOfBounds(i32),
NamedPropertyMapBucketOffsetOutOfBounds(u32),
NamedPropertyMapStringEntryOutOfBounds,
NamedPropertyMapBucketCountNotFound,
InvalidNamedPropertyMapBucketCount(PropertyType),
NamedPropertyMapStreamGuidNotFound,
InvalidNamedPropertyMapStreamGuid(PropertyType),
NamedPropertyMapStreamEntryNotFound,
InvalidNamedPropertyMapStreamEntry(PropertyType),
NamedPropertyMapStreamStringNotFound,
InvalidNamedPropertyMapStreamString(PropertyType),
NamedPropertyMapBucketNotFound(u16),
InvalidNamedPropertyMapBucket(PropertyType),
InvalidSearchUpdateType(u16),
InvalidSearchUpdateQueueOffset(u32),
InvalidSearchUpdateQueueSize(usize),
}Variants§
NodeDatabaseError(NdbError)
ListsTablesPropertiesError(LtpError)
FailedToLockFile
InvalidEntryIdFlags(u32)
StoreRecordKeyNotFound
InvalidStoreRecordKey(PropertyType)
InvalidStoreRecordKeySize(usize)
StoreRootHierarchyTableFailed(String)
StoreOpenFolder(String)
StoreNamedPropertyMap(String)
StoreSearchUpdateQueue(String)
StoreDisplayNameNotFound
InvalidStoreDisplayName(PropertyType)
StoreIpmSubTreeEntryIdNotFound
InvalidStoreIpmSubTreeEntryId(PropertyType)
StoreIpmWastebasketEntryIdNotFound
InvalidStoreIpmWastebasketEntryId(PropertyType)
StoreFinderEntryIdNotFound
InvalidStoreFinderEntryId(PropertyType)
EntryIdWrongStore
FolderDisplayNameNotFound
InvalidFolderDisplayName(PropertyType)
FolderContentCountNotFound
InvalidFolderContentCount(PropertyType)
FolderUnreadCountNotFound
InvalidFolderUnreadCount(PropertyType)
FolderHasSubfoldersNotFound
InvalidFolderHasSubfolders(PropertyType)
InvalidFolderEntryIdType(NodeIdType)
MessageClassNotFound
InvalidMessageClass(PropertyType)
MessageFlagsNotFound
InvalidMessageFlags(PropertyType)
MessageSizeNotFound
InvalidMessageSize(PropertyType)
MessageStatusNotFound
InvalidMessageStatus(PropertyType)
MessageCreationTimeNotFound
InvalidMessageCreationTime(PropertyType)
MessageLastModificationTimeNotFound
InvalidMessageLastModificationTime(PropertyType)
MessageSearchKeyNotFound
InvalidMessageSearchKey(PropertyType)
InvalidMessageEntryIdType(NodeIdType)
MessageSubNodeTreeNotFound
MultipleMessageRecipientTables
MultipleMessageAttachmentTables
AttachmentSizeNotFound
InvalidAttachmentSize(PropertyType)
AttachmentMethodNotFound
InvalidAttachmentMethod(PropertyType)
AttachmentRenderingPositionNotFound
InvalidAttachmentRenderingPosition(PropertyType)
InvalidAttachmentNodeIdType(NodeIdType)
UnknownAttachmentMethod(i32)
AttachmentSubNodeNotFound(NodeId)
AttachmentMessageObjectDataNotFound
InvalidMessageObjectData(PropertyType)
AttachmentFileBinaryDataNotFound
InvalidAttachmentFileBinaryData(PropertyType)
AttachmentStorageObjectDataNotFound
AttachmentStorageRead(String)
InvalidStorageObjectData(PropertyType)
NamedPropertyMapGuidIndexOutOfBounds(u16)
NamedPropertyMapPropertyIndexOutOfBounds(u16)
NamedPropertyMapBucketCountOutOfBounds(i32)
NamedPropertyMapBucketOffsetOutOfBounds(u32)
NamedPropertyMapStringEntryOutOfBounds
NamedPropertyMapBucketCountNotFound
InvalidNamedPropertyMapBucketCount(PropertyType)
NamedPropertyMapStreamGuidNotFound
InvalidNamedPropertyMapStreamGuid(PropertyType)
NamedPropertyMapStreamEntryNotFound
InvalidNamedPropertyMapStreamEntry(PropertyType)
NamedPropertyMapStreamStringNotFound
InvalidNamedPropertyMapStreamString(PropertyType)
NamedPropertyMapBucketNotFound(u16)
InvalidNamedPropertyMapBucket(PropertyType)
InvalidSearchUpdateType(u16)
InvalidSearchUpdateQueueOffset(u32)
InvalidSearchUpdateQueueSize(usize)
Trait Implementations§
Source§impl Debug for MessagingError
impl Debug for MessagingError
Source§impl Display for MessagingError
impl Display for MessagingError
Source§impl Error for MessagingError
impl Error for MessagingError
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()
Source§impl From<LtpError> for MessagingError
impl From<LtpError> for MessagingError
Source§impl From<MessagingError> for Error
impl From<MessagingError> for Error
Source§fn from(err: MessagingError) -> Error
fn from(err: MessagingError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for MessagingError
impl !UnwindSafe for MessagingError
impl Freeze for MessagingError
impl Send for MessagingError
impl Sync for MessagingError
impl Unpin for MessagingError
impl UnsafeUnpin for MessagingError
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