#[non_exhaustive]pub enum DataError {
Show 16 variants
NotImplemented,
NotSupported,
DataOverflow(Option<usize>),
ElementNotFound,
IndexOutOfBounds(Option<usize>),
InvalidAxisLength(Option<usize>),
KeyAlreadyExists,
MismatchedCapacity(Mismatch<Interval<usize>, usize>),
MismatchedDimensions(Mismatch<usize, usize>),
MismatchedIndices,
NodeEmpty(Option<usize>),
NodeLinkNotSet(Option<usize>),
NodeLinkNotUnique(Option<usize>),
NotEnoughElements(Option<usize>),
NotEnoughSpace(Option<usize>),
PartiallyAdded(Option<usize>),
}
error
and data··
only.Expand description
🚩+ A data-related composite error.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
NotImplemented
The requested functionality is not implemented.
NotSupported
The requested functionality is not supported by this type.
DataOverflow(Option<usize>)
The value has surpassed the bounds of the representable data space.
ElementNotFound
The requested element has not been found.
IndexOutOfBounds(Option<usize>)
The given index is out of bounds.
Optionally contains the given index.
InvalidAxisLength(Option<usize>)
The given axis has an invalid length.
Optionally contains the given axis number.
KeyAlreadyExists
The key already exists.
MismatchedCapacity(Mismatch<Interval<usize>, usize>)
The given capacity did not match the required constraints.
MismatchedDimensions(Mismatch<usize, usize>)
The dimensions given did not match the elements provided.
MismatchedIndices
The given indices does not match the expected order.
NodeEmpty(Option<usize>)
The node is empty.
NodeLinkNotSet(Option<usize>)
The link is not set.
NodeLinkNotUnique(Option<usize>)
The link is not unique.
NotEnoughElements(Option<usize>)
There are not enough elements for the operation.
Optionally contains the minimum number of elements needed.
NotEnoughSpace(Option<usize>)
There is not enough free space for the operation.
Optionally contains the number of free spaces needed.
PartiallyAdded(Option<usize>)
The operation could only add a subset of the elements.
Optionally contains the number of elements added.
Implementations§
Source§impl DataError
impl DataError
Sourcepub const fn from_not_implemented(_f: NotImplemented) -> DataError
pub const fn from_not_implemented(_f: NotImplemented) -> DataError
const version of From<NotImplemented> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_not_supported(_f: NotSupported) -> DataError
pub const fn from_not_supported(_f: NotSupported) -> DataError
const version of From<NotSupported> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_data_overflow(_f: DataOverflow) -> DataError
pub const fn from_data_overflow(_f: DataOverflow) -> DataError
const version of From<DataOverflow> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_element_not_found(_f: ElementNotFound) -> DataError
pub const fn from_element_not_found(_f: ElementNotFound) -> DataError
const version of From<ElementNotFound> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_index_out_of_bounds(_f: IndexOutOfBounds) -> DataError
pub const fn from_index_out_of_bounds(_f: IndexOutOfBounds) -> DataError
const version of From<IndexOutOfBounds> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_invalid_axis_length(_f: InvalidAxisLength) -> DataError
pub const fn from_invalid_axis_length(_f: InvalidAxisLength) -> DataError
const version of From<InvalidAxisLength> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_key_already_exists(_f: KeyAlreadyExists) -> DataError
pub const fn from_key_already_exists(_f: KeyAlreadyExists) -> DataError
const version of From<KeyAlreadyExists> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_mismatched_capacity(_f: MismatchedCapacity) -> DataError
pub const fn from_mismatched_capacity(_f: MismatchedCapacity) -> DataError
const version of From<MismatchedCapacity> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_mismatched_dimensions(_f: MismatchedDimensions) -> DataError
pub const fn from_mismatched_dimensions(_f: MismatchedDimensions) -> DataError
const version of From<MismatchedDimensions> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_mismatched_indices(_f: MismatchedIndices) -> DataError
pub const fn from_mismatched_indices(_f: MismatchedIndices) -> DataError
const version of From<MismatchedIndices> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_node_empty(_f: NodeEmpty) -> DataError
pub const fn from_node_empty(_f: NodeEmpty) -> DataError
const version of From<NodeEmpty> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_node_link_not_set(_f: NodeLinkNotSet) -> DataError
pub const fn from_node_link_not_set(_f: NodeLinkNotSet) -> DataError
const version of From<NodeLinkNotSet> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_node_link_not_unique(_f: NodeLinkNotUnique) -> DataError
pub const fn from_node_link_not_unique(_f: NodeLinkNotUnique) -> DataError
const version of From<NodeLinkNotUnique> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_not_enough_elements(_f: NotEnoughElements) -> DataError
pub const fn from_not_enough_elements(_f: NotEnoughElements) -> DataError
const version of From<NotEnoughElements> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_not_enough_space(_f: NotEnoughSpace) -> DataError
pub const fn from_not_enough_space(_f: NotEnoughSpace) -> DataError
const version of From<NotEnoughSpace> for DataError
.
Source§impl DataError
impl DataError
Sourcepub const fn from_partially_added(_f: PartiallyAdded) -> DataError
pub const fn from_partially_added(_f: PartiallyAdded) -> DataError
const version of From<PartiallyAdded> for DataError
.
Trait Implementations§
Source§impl Error for DataError
impl Error for DataError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)> ⓘ
fn source(&self) -> Option<&(dyn Error + 'static)> ⓘ
1.0.0 · Source§fn description(&self) -> &str ⓘ
fn description(&self) -> &str ⓘ
Source§impl From<DataNotEnough> for DataError
impl From<DataNotEnough> for DataError
Source§fn from(f: DataNotEnough) -> DataError
fn from(f: DataNotEnough) -> DataError
Source§impl From<DataOverflow> for DataError
impl From<DataOverflow> for DataError
Source§fn from(_f: DataOverflow) -> DataError
fn from(_f: DataOverflow) -> DataError
Source§impl From<ElementNotFound> for DataError
impl From<ElementNotFound> for DataError
Source§fn from(_f: ElementNotFound) -> DataError
fn from(_f: ElementNotFound) -> DataError
Source§impl From<IndexOutOfBounds> for DataError
impl From<IndexOutOfBounds> for DataError
Source§fn from(_f: IndexOutOfBounds) -> DataError
fn from(_f: IndexOutOfBounds) -> DataError
Source§impl From<InvalidAxisLength> for DataError
impl From<InvalidAxisLength> for DataError
Source§fn from(_f: InvalidAxisLength) -> DataError
fn from(_f: InvalidAxisLength) -> DataError
Source§impl From<KeyAlreadyExists> for DataError
impl From<KeyAlreadyExists> for DataError
Source§fn from(_f: KeyAlreadyExists) -> DataError
fn from(_f: KeyAlreadyExists) -> DataError
Source§impl From<MismatchedBounds> for DataError
impl From<MismatchedBounds> for DataError
Source§fn from(f: MismatchedBounds) -> DataError
fn from(f: MismatchedBounds) -> DataError
Source§impl From<MismatchedCapacity> for DataError
impl From<MismatchedCapacity> for DataError
Source§fn from(_f: MismatchedCapacity) -> DataError
fn from(_f: MismatchedCapacity) -> DataError
Source§impl From<MismatchedDimensions> for DataError
impl From<MismatchedDimensions> for DataError
Source§fn from(_f: MismatchedDimensions) -> DataError
fn from(_f: MismatchedDimensions) -> DataError
Source§impl From<MismatchedIndices> for DataError
impl From<MismatchedIndices> for DataError
Source§fn from(_f: MismatchedIndices) -> DataError
fn from(_f: MismatchedIndices) -> DataError
Source§impl From<NodeLinkNotSet> for DataError
impl From<NodeLinkNotSet> for DataError
Source§fn from(_f: NodeLinkNotSet) -> DataError
fn from(_f: NodeLinkNotSet) -> DataError
Source§impl From<NodeLinkNotUnique> for DataError
impl From<NodeLinkNotUnique> for DataError
Source§fn from(_f: NodeLinkNotUnique) -> DataError
fn from(_f: NodeLinkNotUnique) -> DataError
Source§impl From<NotAvailable> for DataError
impl From<NotAvailable> for DataError
Source§fn from(f: NotAvailable) -> DataError
fn from(f: NotAvailable) -> DataError
Source§impl From<NotEnoughElements> for DataError
impl From<NotEnoughElements> for DataError
Source§fn from(_f: NotEnoughElements) -> DataError
fn from(_f: NotEnoughElements) -> DataError
Source§impl From<NotEnoughSpace> for DataError
impl From<NotEnoughSpace> for DataError
Source§fn from(_f: NotEnoughSpace) -> DataError
fn from(_f: NotEnoughSpace) -> DataError
Source§impl From<NotImplemented> for DataError
impl From<NotImplemented> for DataError
Source§fn from(_f: NotImplemented) -> DataError
fn from(_f: NotImplemented) -> DataError
Source§impl From<NotSupported> for DataError
impl From<NotSupported> for DataError
Source§fn from(_f: NotSupported) -> DataError
fn from(_f: NotSupported) -> DataError
Source§impl From<PartialSpace> for DataError
impl From<PartialSpace> for DataError
Source§fn from(f: PartialSpace) -> DataError
fn from(f: PartialSpace) -> DataError
Source§impl From<PartiallyAdded> for DataError
impl From<PartiallyAdded> for DataError
Source§fn from(_f: PartiallyAdded) -> DataError
fn from(_f: PartiallyAdded) -> DataError
Source§impl TryFrom<DataError> for DataNotEnough
impl TryFrom<DataError> for DataNotEnough
Source§type Error = FailedErrorConversion
type Error = FailedErrorConversion
Source§fn try_from(f: DataError) -> Result<DataNotEnough, FailedErrorConversion> ⓘ
fn try_from(f: DataError) -> Result<DataNotEnough, FailedErrorConversion> ⓘ
Source§impl TryFrom<DataError> for DataOverflow
impl TryFrom<DataError> for DataOverflow
Source§impl TryFrom<DataError> for ElementNotFound
impl TryFrom<DataError> for ElementNotFound
Source§impl TryFrom<DataError> for IndexOutOfBounds
impl TryFrom<DataError> for IndexOutOfBounds
Source§impl TryFrom<DataError> for InvalidAxisLength
impl TryFrom<DataError> for InvalidAxisLength
Source§impl TryFrom<DataError> for KeyAlreadyExists
impl TryFrom<DataError> for KeyAlreadyExists
Source§impl TryFrom<DataError> for MismatchedBounds
impl TryFrom<DataError> for MismatchedBounds
Source§type Error = FailedErrorConversion
type Error = FailedErrorConversion
Source§fn try_from(f: DataError) -> Result<MismatchedBounds, FailedErrorConversion> ⓘ
fn try_from(f: DataError) -> Result<MismatchedBounds, FailedErrorConversion> ⓘ
Source§impl TryFrom<DataError> for MismatchedCapacity
impl TryFrom<DataError> for MismatchedCapacity
Source§impl TryFrom<DataError> for MismatchedDimensions
impl TryFrom<DataError> for MismatchedDimensions
Source§impl TryFrom<DataError> for MismatchedIndices
impl TryFrom<DataError> for MismatchedIndices
Source§impl TryFrom<DataError> for NodeLinkNotSet
impl TryFrom<DataError> for NodeLinkNotSet
Source§impl TryFrom<DataError> for NodeLinkNotUnique
impl TryFrom<DataError> for NodeLinkNotUnique
Source§impl TryFrom<DataError> for NotAvailable
impl TryFrom<DataError> for NotAvailable
Source§type Error = FailedErrorConversion
type Error = FailedErrorConversion
Source§fn try_from(f: DataError) -> Result<NotAvailable, FailedErrorConversion> ⓘ
fn try_from(f: DataError) -> Result<NotAvailable, FailedErrorConversion> ⓘ
Source§impl TryFrom<DataError> for NotEnoughElements
impl TryFrom<DataError> for NotEnoughElements
Source§impl TryFrom<DataError> for NotEnoughSpace
impl TryFrom<DataError> for NotEnoughSpace
Source§impl TryFrom<DataError> for NotImplemented
impl TryFrom<DataError> for NotImplemented
Source§impl TryFrom<DataError> for NotSupported
impl TryFrom<DataError> for NotSupported
Source§impl TryFrom<DataError> for PartialSpace
impl TryFrom<DataError> for PartialSpace
Source§type Error = FailedErrorConversion
type Error = FailedErrorConversion
Source§fn try_from(f: DataError) -> Result<PartialSpace, FailedErrorConversion> ⓘ
fn try_from(f: DataError) -> Result<PartialSpace, FailedErrorConversion> ⓘ
Source§impl TryFrom<DataError> for PartiallyAdded
impl TryFrom<DataError> for PartiallyAdded
impl Copy for DataError
impl Eq for DataError
impl StructuralPartialEq for DataError
Auto Trait Implementations§
impl Freeze for DataError
impl RefUnwindSafe for DataError
impl Send for DataError
impl Sync for DataError
impl Unpin for DataError
impl UnwindSafe for DataError
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§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> ⓘ
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> ⓘ
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 more