pub struct PivotCacheEntry {
pub cache_id: u32,
pub r_id: String,
}Expand description
Individual pivot cache entry linking a cache ID to a relationship.
Fields§
§cache_id: u32§r_id: StringTrait Implementations§
Source§impl Clone for PivotCacheEntry
impl Clone for PivotCacheEntry
Source§fn clone(&self) -> PivotCacheEntry
fn clone(&self) -> PivotCacheEntry
Returns a duplicate 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 PivotCacheEntry
impl Debug for PivotCacheEntry
Source§impl<'de> Deserialize<'de> for PivotCacheEntry
impl<'de> Deserialize<'de> for PivotCacheEntry
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 PivotCacheEntry
impl PartialEq for PivotCacheEntry
Source§impl Serialize for PivotCacheEntry
impl Serialize for PivotCacheEntry
impl StructuralPartialEq for PivotCacheEntry
Auto Trait Implementations§
impl Freeze for PivotCacheEntry
impl RefUnwindSafe for PivotCacheEntry
impl Send for PivotCacheEntry
impl Sync for PivotCacheEntry
impl Unpin for PivotCacheEntry
impl UnwindSafe for PivotCacheEntry
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