pub enum DataSetError {
Show 20 variants
ValueDoesNotMatchSchema,
PathParentIsNull,
PathDynamicArrayEntryDoesNotExist,
UnexpectedEnumSymbol,
DuplicateAssetId,
DuplicateEntryKey,
EntryKeyNotFound,
AssetNotFound,
ImportDataNotFound,
SingleObjectDoesNotMatchSchema,
LocationCycleDetected,
LocationParentNotFound,
SchemaNotFound,
InvalidSchema,
UuidParseError,
StorageFormatError,
NewLocationIsChildOfCurrentAsset,
UnknownPathNamespace,
InvalidPath,
DataTaken,
}
Variants§
ValueDoesNotMatchSchema
PathParentIsNull
PathDynamicArrayEntryDoesNotExist
UnexpectedEnumSymbol
DuplicateAssetId
DuplicateEntryKey
EntryKeyNotFound
AssetNotFound
ImportDataNotFound
SingleObjectDoesNotMatchSchema
LocationCycleDetected
LocationParentNotFound
SchemaNotFound
InvalidSchema
UuidParseError
StorageFormatError
NewLocationIsChildOfCurrentAsset
UnknownPathNamespace
InvalidPath
DataTaken
Trait Implementations§
Source§impl Clone for DataSetError
impl Clone for DataSetError
Source§fn clone(&self) -> DataSetError
fn clone(&self) -> DataSetError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DataSetError
impl Debug for DataSetError
Source§impl From<DataSetError> for DataSetErrorWithBacktrace
impl From<DataSetError> for DataSetErrorWithBacktrace
Source§fn from(error: DataSetError) -> DataSetErrorWithBacktrace
fn from(error: DataSetError) -> DataSetErrorWithBacktrace
Converts to this type from the input type.
impl Copy for DataSetError
Auto Trait Implementations§
impl Freeze for DataSetError
impl RefUnwindSafe for DataSetError
impl Send for DataSetError
impl Sync for DataSetError
impl Unpin for DataSetError
impl UnwindSafe for DataSetError
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