pub struct AllocationStore {
pub in_sync: bool,
pub allocation_id: String,
pub matching_size_in_bytes: u32,
pub store_exception: String,
pub found: bool,
pub matching_sync_id: bool,
}Fields§
§in_sync: bool§allocation_id: String§matching_size_in_bytes: u32§store_exception: String§found: bool§matching_sync_id: boolImplementations§
Trait Implementations§
Source§impl Clone for AllocationStore
impl Clone for AllocationStore
Source§fn clone(&self) -> AllocationStore
fn clone(&self) -> AllocationStore
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 AllocationStore
impl Debug for AllocationStore
Source§impl Default for AllocationStore
impl Default for AllocationStore
Source§fn default() -> AllocationStore
fn default() -> AllocationStore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllocationStore
impl<'de> Deserialize<'de> for AllocationStore
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 AllocationStore
impl PartialEq for AllocationStore
Source§fn eq(&self, other: &AllocationStore) -> bool
fn eq(&self, other: &AllocationStore) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AllocationStore
impl Serialize for AllocationStore
impl StructuralPartialEq for AllocationStore
Auto Trait Implementations§
impl Freeze for AllocationStore
impl RefUnwindSafe for AllocationStore
impl Send for AllocationStore
impl Sync for AllocationStore
impl Unpin for AllocationStore
impl UnsafeUnpin for AllocationStore
impl UnwindSafe for AllocationStore
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