pub enum ArrayEncoding {
Text,
LittleEndianBase64,
BigEndianBase64,
}Expand description
How the <Stream> body of an <Array> was encoded on the wire.
Variants§
Implementations§
Source§impl ArrayEncoding
impl ArrayEncoding
Trait Implementations§
Source§impl Clone for ArrayEncoding
impl Clone for ArrayEncoding
Source§fn clone(&self) -> ArrayEncoding
fn clone(&self) -> ArrayEncoding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArrayEncoding
impl Debug for ArrayEncoding
Source§impl PartialEq for ArrayEncoding
impl PartialEq for ArrayEncoding
Source§fn eq(&self, other: &ArrayEncoding) -> bool
fn eq(&self, other: &ArrayEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ArrayEncoding
impl Eq for ArrayEncoding
impl StructuralPartialEq for ArrayEncoding
Auto Trait Implementations§
impl Freeze for ArrayEncoding
impl RefUnwindSafe for ArrayEncoding
impl Send for ArrayEncoding
impl Sync for ArrayEncoding
impl Unpin for ArrayEncoding
impl UnsafeUnpin for ArrayEncoding
impl UnwindSafe for ArrayEncoding
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more