Searched refs:StateFn (Results 1 – 2 of 2) sorted by relevance
585 return Ok(Some(StateFn { in s1()596 return Ok(Some(StateFn { in s2()921 Ok(Some(StateFn { f: s2 })) in unmarshal_protocol_version()962 Ok(Some(StateFn { f: s3 })) in unmarshal_origin()970 Ok(Some(StateFn { f: s4 })) in unmarshal_session_name()978 Ok(Some(StateFn { f: s7 })) in unmarshal_session_information()994 Ok(Some(StateFn { f: s6 })) in unmarshal_email()1002 Ok(Some(StateFn { f: s8 })) in unmarshal_phone()1010 Ok(Some(StateFn { f: s5 })) in unmarshal_session_connection_information()1055 Ok(Some(StateFn { f: s5 })) in unmarshal_session_bandwidth()[all …]
14 pub type StateFnType<'a, R> = fn(&mut Lexer<'a, R>) -> Result<Option<StateFn<'a, R>>>;16 pub struct StateFn<'a, R: io::BufRead + io::Seek> { struct