#[repr(u8)]
pub enum Amf3 {
False,
True,
Double(f64),
String(Amf3String),
Array(Amf3Array),
}
Expand description
A type that can be (de-)serialized in the AMF3 format.
Variants
False
True
Double(f64)
String(Amf3String)
Array(Amf3Array)
Trait Implementations
sourceimpl<R: Read> Deserialize<LittleEndian, R> for Amf3
impl<R: Read> Deserialize<LittleEndian, R> for Amf3
sourcefn deserialize(reader: &mut R) -> Res<Self>
fn deserialize(reader: &mut R) -> Res<Self>
Deserializes the type by reading from the reader.
impl StructuralPartialEq for Amf3
Auto Trait Implementations
impl RefUnwindSafe for Amf3
impl Send for Amf3
impl Sync for Amf3
impl Unpin for Amf3
impl UnwindSafe for Amf3
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more