pub struct AllocateList {
pub error_code: u8,
pub list_id: u16,
}
Fields§
§error_code: u8
§list_id: u16
Trait Implementations§
Source§impl Clone for AllocateList
impl Clone for AllocateList
Source§fn clone(&self) -> AllocateList
fn clone(&self) -> AllocateList
Returns a copy of the value. Read more
1.0.0 · 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 AllocateList
impl Debug for AllocateList
Source§impl Default for AllocateList
impl Default for AllocateList
Source§fn default() -> AllocateList
fn default() -> AllocateList
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for AllocateList
impl FromByteSlice for AllocateList
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> AllocateList
fn from_le_byte_slice(bytes: &[u8]) -> AllocateList
Deserialize the implementing type from a byte slice.
Source§impl Hash for AllocateList
impl Hash for AllocateList
Source§impl PartialEq for AllocateList
impl PartialEq for AllocateList
impl Copy for AllocateList
impl Eq for AllocateList
impl StructuralPartialEq for AllocateList
Auto Trait Implementations§
impl Freeze for AllocateList
impl RefUnwindSafe for AllocateList
impl Send for AllocateList
impl Sync for AllocateList
impl Unpin for AllocateList
impl UnwindSafe for AllocateList
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