Home
last modified time | relevance | path

Searched defs:Amf0ValueType (Results 1 – 6 of 6) sorted by relevance

/xiu/protocol/rtmp/src/amf0/
H A Damf0_reader.rs17 pub fn read_all(&mut self) -> Result<Vec<Amf0ValueType>, Amf0ReadError> { in read_all()
33 pub fn read_any(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_any()
56 pub fn read_with_type(&mut self, specified_marker: u8) -> Result<Amf0ValueType, Amf0ReadError> { in read_with_type()
68 pub fn read_number(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_number()
74 pub fn read_bool(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_bool()
92 pub fn read_string(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_string()
97 pub fn read_null(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_null()
110 pub fn read_object(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_object()
129 pub fn read_ecma_array(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_ecma_array()
149 pub fn read_long_string(&mut self) -> Result<Amf0ValueType, Amf0ReadError> { in read_long_string()
H A Ddefine.rs4 pub enum Amf0ValueType { enum
H A Damf0_writer.rs78 properties: &IndexMap<String, Amf0ValueType>, in write_object() argument
94 properties: &IndexMap<String, Amf0ValueType>, in write_eacm_array() argument
/xiu/protocol/rtmp/src/session/
H A Dserver_session.rs284 command_name: &Amf0ValueType, in on_amf0_command_message()
285 transaction_id: &Amf0ValueType, in on_amf0_command_message()
286 command_object: &Amf0ValueType, in on_amf0_command_message()
287 others: &mut Vec<Amf0ValueType>, in on_amf0_command_message()
362 fn parse_connect_properties(&mut self, command_obj: &IndexMap<String, Amf0ValueType>) { in parse_connect_properties() argument
425 command_obj: &IndexMap<String, Amf0ValueType>, in on_connect() argument
538 other_values: &mut Vec<Amf0ValueType>, in on_play()
667 other_values: &mut Vec<Amf0ValueType>, in on_publish()
H A Dclient_session.rs283 command_name: &Amf0ValueType, in on_amf0_command_message()
284 transaction_id: &Amf0ValueType, in on_amf0_command_message()
285 command_object: &Amf0ValueType, in on_amf0_command_message()
286 others: &mut Vec<Amf0ValueType>, in on_amf0_command_message()
522 obj: &IndexMap<String, Amf0ValueType>, in on_status() argument
/xiu/protocol/rtmp/src/netconnection/
H A Dwriter.rs96 properties: IndexMap<String, Amf0ValueType>, in write_connect_with_value() argument