Enum re_types::image::ImageConstructionError
source · pub enum ImageConstructionError<T: TryInto<TensorData>>{
TensorDataConversion(T::Error),
BadImageShape(Vec<TensorDimension>),
}Expand description
Error returned when trying to interpret a tensor as an image.
Variants§
TensorDataConversion(T::Error)
Could not convert source to TensorData.
BadImageShape(Vec<TensorDimension>)
The tensor did not have the right shape for an image (e.g. had too many dimensions).
Trait Implementations§
source§impl<T: Clone + TryInto<TensorData>> Clone for ImageConstructionError<T>
impl<T: Clone + TryInto<TensorData>> Clone for ImageConstructionError<T>
source§fn clone(&self) -> ImageConstructionError<T>
fn clone(&self) -> ImageConstructionError<T>
Returns a copy 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<T: Debug + TryInto<TensorData>> Debug for ImageConstructionError<T>
impl<T: Debug + TryInto<TensorData>> Debug for ImageConstructionError<T>
source§impl<T: TryInto<TensorData>> Display for ImageConstructionError<T>
impl<T: TryInto<TensorData>> Display for ImageConstructionError<T>
source§impl<T: TryInto<TensorData>> Error for ImageConstructionError<T>
impl<T: TryInto<TensorData>> Error for ImageConstructionError<T>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<T> Freeze for ImageConstructionError<T>
impl<T> RefUnwindSafe for ImageConstructionError<T>
impl<T> Send for ImageConstructionError<T>
impl<T> Sync for ImageConstructionError<T>
impl<T> Unpin for ImageConstructionError<T>
impl<T> UnwindSafe for ImageConstructionError<T>
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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>
Converts
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>
Converts
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