pub enum TblError {
Show 32 variants
InvalidHandle,
InvalidName,
InvalidSize,
NeverLoaded,
RegistryFull,
NoAccess,
Unregistered,
HandlesFull,
DuplicateDiffSize,
DuplicateNotOwned,
NoBufferAvail,
DumpOnly,
IllegalSrcType,
LoadInProgress,
FileTooLarge,
BadContentId,
BadSubtypeId,
FileSizeInconsistent,
NoStdHeader,
NoTblHeader,
FilenameTooLong,
FileForWrongTable,
LoadIncomplete,
PartialLoad,
InvalidOptions,
BadSpacecraftId,
BadProcessorId,
MessageError,
ShortFile,
Access,
BadArgument,
NotImplemented,
}Expand description
CFE Table Services errors.
Variants§
InvalidHandle
The table handle is invalid.
InvalidName
The table name is invalid.
InvalidSize
The table size is invalid.
NeverLoaded
The table has never been loaded.
RegistryFull
The table registry is full.
NoAccess
Access to the table was denied.
Unregistered
The table is not registered.
HandlesFull
All available table handles are in use.
DuplicateDiffSize
A duplicate table with a different size was found.
DuplicateNotOwned
A duplicate table was found but is not owned by the calling application.
NoBufferAvail
No working buffer is available.
DumpOnly
The table is dump-only; load is not permitted.
IllegalSrcType
The source type is illegal for this operation.
LoadInProgress
A table load is already in progress.
FileTooLarge
The file is too large for the table.
BadContentId
The content ID in the file header is invalid.
BadSubtypeId
The subtype ID in the file header is invalid.
FileSizeInconsistent
The file size is inconsistent with the table size.
NoStdHeader
The file is missing a standard header.
NoTblHeader
The file is missing a table header.
FilenameTooLong
The filename exceeds the maximum allowed length.
FileForWrongTable
The file is intended for a different table.
LoadIncomplete
The table load did not complete.
PartialLoad
Only a partial load was performed.
InvalidOptions
The table options are invalid.
BadSpacecraftId
The spacecraft ID in the file header does not match.
BadProcessorId
The processor ID in the file header does not match.
MessageError
A message error occurred during table operations.
ShortFile
The file is shorter than expected.
Access
A table access error occurred.
BadArgument
A bad argument was provided.
NotImplemented
The requested function is not implemented.