pub struct NotSeqOf<T> {
pub obj: Obj,
pub mark: PhantomData<T>,
}Expand description
Fails to get repeatly sequence of T in some list.
Fields§
§obj: Obj§mark: PhantomData<T>Implementations§
Trait Implementations§
source§impl<T> Error for NotSeqOf<T>where
T: Debug,
impl<T> Error for NotSeqOf<T>where T: Debug,
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> RefUnwindSafe for NotSeqOf<T>where T: RefUnwindSafe,
impl<T> !Send for NotSeqOf<T>
impl<T> !Sync for NotSeqOf<T>
impl<T> Unpin for NotSeqOf<T>where T: Unpin,
impl<T> UnwindSafe for NotSeqOf<T>where T: UnwindSafe,
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