Searched refs:Amf0ReadError (Results 1 – 5 of 5) sorted by relevance
| /xiu/protocol/rtmp/src/netconnection/ |
| H A D | errors.rs | 3 amf0::errors::{Amf0ReadError, Amf0WriteError}, 19 Amf0ReadError(Amf0ReadError), enumerator 32 impl From<Amf0ReadError> for NetConnectionError { 33 fn from(error: Amf0ReadError) -> Self { in from() 35 value: NetConnectionErrorValue::Amf0ReadError(error), in from()
|
| /xiu/protocol/rtmp/src/amf0/ |
| H A D | errors.rs | 22 pub struct Amf0ReadError { struct 26 impl From<string::FromUtf8Error> for Amf0ReadError { implementation 28 Amf0ReadError { in from() 34 impl From<BytesReadError> for Amf0ReadError { implementation 36 Amf0ReadError { in from() 73 impl fmt::Display for Amf0ReadError { implementation 79 impl Fail for Amf0ReadError { implementation
|
| H A D | amf0_reader.rs | 2 super::{amf0_markers, errors::Amf0ReadErrorValue, Amf0ReadError, Amf0ValueType}, 17 pub fn read_all(&mut self) -> Result<Vec<Amf0ValueType>, Amf0ReadError> { in read_all() argument 33 pub fn read_any(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_any() argument 51 _ => Err(Amf0ReadError { in read_any() 60 return Err(Amf0ReadError { in read_with_type() 68 pub fn read_number(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_number() argument 74 pub fn read_bool(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_bool() argument 83 pub fn read_raw_string(&mut self) -> Result<String, Amf0ReadError> { in read_raw_string() argument 92 pub fn read_string(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_string() argument 97 pub fn read_null(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_null() argument [all …]
|
| H A D | mod.rs | 9 pub use self::errors::{Amf0ReadError,Amf0WriteError};
|
| /xiu/protocol/rtmp/src/messages/ |
| H A D | errors.rs | 3 amf0::errors::Amf0ReadError, 19 Amf0ReadError(Amf0ReadError), enumerator 47 impl From<Amf0ReadError> for MessageError { 48 fn from(error: Amf0ReadError) -> Self { in from() 50 value: MessageErrorValue::Amf0ReadError(error), in from()
|