pub enum RecordAttributeError {
BadField,
RecordTypeNotFound,
}Expand description
Why a dbPutAttribute was refused, carrying the C status the shell
reports and the errSymLookup text errMessage prints in front of it.
Variants§
BadField
C S_db_badField (dbAccess.c:443-445) — no attribute name was
given. C tests !name; an iocsh argument that is absent and one that
is "" are the same absent argument here.
RecordTypeNotFound
C S_dbLib_recordTypeNotFound, from dbFindRecordType
(dbAccess.c:453) or dbPutRecordAttribute’s own !precordType
guard (dbStaticLib.c:1240).
Implementations§
Trait Implementations§
Source§impl Clone for RecordAttributeError
impl Clone for RecordAttributeError
impl Copy for RecordAttributeError
Source§impl Debug for RecordAttributeError
impl Debug for RecordAttributeError
impl Eq for RecordAttributeError
Source§impl PartialEq for RecordAttributeError
impl PartialEq for RecordAttributeError
impl StructuralPartialEq for RecordAttributeError
Auto Trait Implementations§
impl Freeze for RecordAttributeError
impl RefUnwindSafe for RecordAttributeError
impl Send for RecordAttributeError
impl Sync for RecordAttributeError
impl Unpin for RecordAttributeError
impl UnsafeUnpin for RecordAttributeError
impl UnwindSafe for RecordAttributeError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.