Struct LinesAny
struct LinesAny<'a>(_)
Created with the method lines_any.
Implementations
impl FusedIterator for LinesAny<'_>
impl<'a> Clone for LinesAny<'a>
fn clone(self: &Self) -> LinesAny<'a>
impl<'a> Debug for LinesAny<'a>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'a> DoubleEndedIterator for LinesAny<'a>
fn next_back(self: &mut Self) -> Option<&'a str>
impl<'a> Freeze for LinesAny<'a>
impl<'a> Iterator for LinesAny<'a>
fn next(self: &mut Self) -> Option<&'a str>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<'a> RefUnwindSafe for LinesAny<'a>
impl<'a> Send for LinesAny<'a>
impl<'a> Sync for LinesAny<'a>
impl<'a> Unpin for LinesAny<'a>
impl<'a> UnsafeUnpin for LinesAny<'a>
impl<'a> UnwindSafe for LinesAny<'a>
impl<I> IntoIterator for LinesAny<'a>
fn into_iter(self: Self) -> I
impl<T> Any for LinesAny<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for LinesAny<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for LinesAny<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for LinesAny<'a>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for LinesAny<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for LinesAny<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for LinesAny<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for LinesAny<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>