Struct email_parser::fsm::Machine
source · pub struct Machine<'a> {
input: &'a str,
}
Expand description
Machine is the core export of the module. It is an IntoIterator and consuming the iterator determines if given string literal is a valid email address or not.
Fields§
§input: &'a str
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Machine<'a>
impl<'a> Send for Machine<'a>
impl<'a> Sync for Machine<'a>
impl<'a> Unpin for Machine<'a>
impl<'a> UnwindSafe for Machine<'a>
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