pub struct MemoryView {
pub base: u16,
pub data: Bytes,
}Fields§
§base: u16§data: BytesImplementations§
Trait Implementations§
Source§impl Clone for MemoryView
impl Clone for MemoryView
Source§fn clone(&self) -> MemoryView
fn clone(&self) -> MemoryView
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 MemoryView
Available on crate feature debug only.
impl Debug for MemoryView
Available on crate feature
debug only.Source§impl Default for MemoryView
impl Default for MemoryView
Source§fn default() -> MemoryView
fn default() -> MemoryView
Returns the “default value” for a type. Read more
Source§impl ExtendView for MemoryView
impl ExtendView for MemoryView
fn extend_with(&mut self, other: Self) -> Result<(), ExtendError>
Source§impl UnaryResponse for MemoryView
impl UnaryResponse for MemoryView
fn from_packet(packet: Bytes) -> Result<Self, ProtocolError>
Auto Trait Implementations§
impl !Freeze for MemoryView
impl RefUnwindSafe for MemoryView
impl Send for MemoryView
impl Sync for MemoryView
impl Unpin for MemoryView
impl UnsafeUnpin for MemoryView
impl UnwindSafe for MemoryView
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