pub struct RefCacheKey {
pub reftype: String,
pub id: String,
}
Expand description
A key used to get all items who references current item with reference type reftype
.
Fields§
§reftype: String
§id: String
Trait Implementations§
Source§impl Clone for RefCacheKey
impl Clone for RefCacheKey
Source§fn clone(&self) -> RefCacheKey
fn clone(&self) -> RefCacheKey
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 RefCacheKey
impl Debug for RefCacheKey
Source§impl Hash for RefCacheKey
impl Hash for RefCacheKey
Source§impl Ord for RefCacheKey
impl Ord for RefCacheKey
Source§fn cmp(&self, other: &RefCacheKey) -> Ordering
fn cmp(&self, other: &RefCacheKey) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RefCacheKey
impl PartialEq for RefCacheKey
Source§impl PartialOrd for RefCacheKey
impl PartialOrd for RefCacheKey
impl Eq for RefCacheKey
impl StructuralPartialEq for RefCacheKey
Auto Trait Implementations§
impl Freeze for RefCacheKey
impl RefUnwindSafe for RefCacheKey
impl Send for RefCacheKey
impl Sync for RefCacheKey
impl Unpin for RefCacheKey
impl UnwindSafe for RefCacheKey
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