pub struct ReinterpretError<T> { /* private fields */ }Expand description
Owns the original tensor when a consuming representation reinterpretation cannot publish its checked descriptor.
Reinterpretation never falls back to an allocation or a copy. Call
Self::into_owner to recover the unchanged input and Self::error to
inspect the typed failure.
§Examples
use tenferro_tensor::TypedTensor;
let tensor = TypedTensor::<f32>::from_vec_col_major(vec![1], vec![1.0])?;
let Err(failure) = tensor.into_complex() else { return Ok(()); };
assert!(!failure.error().to_string().is_empty());Implementations§
Source§impl<T> ReinterpretError<T>
impl<T> ReinterpretError<T>
Sourcepub fn into_owner(self) -> T
pub fn into_owner(self) -> T
Recover the unchanged original owner.
§Examples
use tenferro_tensor::TypedTensor;
let tensor = TypedTensor::<f32>::from_vec_col_major(vec![1], vec![1.0])?;
let Err(failure) = tensor.into_complex() else { return Ok(()); };
let _owner = failure.into_owner();Sourcepub fn error(&self) -> &Error
pub fn error(&self) -> &Error
Borrow the typed failure without consuming the owner.
§Examples
use tenferro_tensor::TypedTensor;
let tensor = TypedTensor::<f32>::from_vec_col_major(vec![1], vec![1.0])?;
let Err(failure) = tensor.into_complex() else { return Ok(()); };
assert!(!failure.error().to_string().is_empty());Trait Implementations§
Source§impl<T: Debug> Debug for ReinterpretError<T>
impl<T: Debug> Debug for ReinterpretError<T>
Source§impl<T: Debug> Display for ReinterpretError<T>
impl<T: Debug> Display for ReinterpretError<T>
Source§impl<T: Debug + 'static> Error for ReinterpretError<T>
impl<T: Debug + 'static> Error for ReinterpretError<T>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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> !RefUnwindSafe for ReinterpretError<T>
impl<T> !UnwindSafe for ReinterpretError<T>
impl<T> Freeze for ReinterpretError<T>
impl<T> Send for ReinterpretError<T>where
T: Send,
impl<T> Sync for ReinterpretError<T>where
T: Sync,
impl<T> Unpin for ReinterpretError<T>
impl<T> UnsafeUnpin for ReinterpretError<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> 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