pub struct ByteBuffer {
pub order: Option<String>,
pub array: Option<String>,
}Fields§
§order: Option<String>The byte buffer order.
array: Option<String>The byte buffer array.
Implementations§
Source§impl ByteBuffer
impl ByteBuffer
pub fn new() -> ByteBuffer
Trait Implementations§
Source§impl Clone for ByteBuffer
impl Clone for ByteBuffer
Source§fn clone(&self) -> ByteBuffer
fn clone(&self) -> ByteBuffer
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 ByteBuffer
impl Debug for ByteBuffer
Source§impl Default for ByteBuffer
impl Default for ByteBuffer
Source§fn default() -> ByteBuffer
fn default() -> ByteBuffer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ByteBuffer
impl<'de> Deserialize<'de> for ByteBuffer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ByteBuffer
impl PartialEq for ByteBuffer
Source§fn eq(&self, other: &ByteBuffer) -> bool
fn eq(&self, other: &ByteBuffer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ByteBuffer
impl Serialize for ByteBuffer
impl StructuralPartialEq for ByteBuffer
Auto Trait Implementations§
impl Freeze for ByteBuffer
impl RefUnwindSafe for ByteBuffer
impl Send for ByteBuffer
impl Sync for ByteBuffer
impl Unpin for ByteBuffer
impl UnsafeUnpin for ByteBuffer
impl UnwindSafe for ByteBuffer
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