pub struct CellFailure {
pub from: usize,
pub to: usize,
pub actual: String,
}Expand description
One mismatched CELL as a source-offset range plus the runtime value.
from/to are absolute UTF-16 source offsets; to is exclusive.
Fields§
§from: usize§to: usize§actual: StringImplementations§
Source§impl CellFailure
impl CellFailure
Trait Implementations§
Source§impl Clone for CellFailure
impl Clone for CellFailure
Source§fn clone(&self) -> CellFailure
fn clone(&self) -> CellFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CellFailure
impl Debug for CellFailure
impl Eq for CellFailure
Source§impl PartialEq for CellFailure
impl PartialEq for CellFailure
impl StructuralPartialEq for CellFailure
Auto Trait Implementations§
impl Freeze for CellFailure
impl RefUnwindSafe for CellFailure
impl Send for CellFailure
impl Sync for CellFailure
impl Unpin for CellFailure
impl UnsafeUnpin for CellFailure
impl UnwindSafe for CellFailure
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<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