enum ConstructorStringParserState {
    Init,
    Protocol,
    Authority,
    Username,
    Password,
    Hostname,
    Port,
    Pathname,
    Search,
    Hash,
    Done,
}Variants§
Trait Implementations§
Source§impl Debug for ConstructorStringParserState
 
impl Debug for ConstructorStringParserState
Source§impl PartialEq for ConstructorStringParserState
 
impl PartialEq for ConstructorStringParserState
Source§fn eq(&self, other: &ConstructorStringParserState) -> bool
 
fn eq(&self, other: &ConstructorStringParserState) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl Eq for ConstructorStringParserState
impl StructuralPartialEq for ConstructorStringParserState
Auto Trait Implementations§
impl Freeze for ConstructorStringParserState
impl RefUnwindSafe for ConstructorStringParserState
impl Send for ConstructorStringParserState
impl Sync for ConstructorStringParserState
impl Unpin for ConstructorStringParserState
impl UnwindSafe for ConstructorStringParserState
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