pub struct MemoryPage {
pub data: Option<Vec<MemoryEntry>>,
}Fields§
§data: Option<Vec<MemoryEntry>>Data is the matching memory entries, newest first.
Implementations§
Source§impl MemoryPage
impl MemoryPage
pub fn new() -> MemoryPage
Trait Implementations§
Source§impl Clone for MemoryPage
impl Clone for MemoryPage
Source§fn clone(&self) -> MemoryPage
fn clone(&self) -> MemoryPage
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 MemoryPage
impl Debug for MemoryPage
Source§impl Default for MemoryPage
impl Default for MemoryPage
Source§fn default() -> MemoryPage
fn default() -> MemoryPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemoryPage
impl<'de> Deserialize<'de> for MemoryPage
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 MemoryPage
impl PartialEq for MemoryPage
Source§impl Serialize for MemoryPage
impl Serialize for MemoryPage
impl StructuralPartialEq for MemoryPage
Auto Trait Implementations§
impl Freeze for MemoryPage
impl RefUnwindSafe for MemoryPage
impl Send for MemoryPage
impl Sync for MemoryPage
impl Unpin for MemoryPage
impl UnsafeUnpin for MemoryPage
impl UnwindSafe for MemoryPage
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