Enum ply_rs::ply::Encoding
[−]
[src]
pub enum Encoding { Ascii, BinaryBigEndian, BinaryLittleEndian, }
Models possible encoding standards for the payload.
Variants
Ascii
Write numbers in their ascii representation (e.g. -13, 6.28, etc.). Properties are separated by spaces and elements are separated by line breaks.
BinaryBigEndian
Encode payload using big endian.
BinaryLittleEndian
Encode payload using little endian.
Trait Implementations
impl Debug for Encoding
[src]
impl PartialEq for Encoding
[src]
fn eq(&self, __arg_0: &Encoding) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for Encoding
[src]
impl Clone for Encoding
[src]
fn clone(&self) -> Encoding
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more