pub struct CacheVersionId(/* private fields */);
Trait Implementations§
Source§impl Clone for CacheVersionId
impl Clone for CacheVersionId
Source§fn clone(&self) -> CacheVersionId
fn clone(&self) -> CacheVersionId
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 CacheVersionId
impl Debug for CacheVersionId
Source§impl From<CacheVersionId> for CacheVersion
impl From<CacheVersionId> for CacheVersion
Source§fn from(version: CacheVersionId) -> Self
fn from(version: CacheVersionId) -> Self
Converts to this type from the input type.
Source§impl FromBytes for CacheVersionId
impl FromBytes for CacheVersionId
Source§fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
Interprets the prefix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
Interprets the suffix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§impl FromZeroes for CacheVersionIdwhere
u32: FromZeroes,
impl FromZeroes for CacheVersionIdwhere
u32: FromZeroes,
impl Copy for CacheVersionId
Auto Trait Implementations§
impl Freeze for CacheVersionId
impl RefUnwindSafe for CacheVersionId
impl Send for CacheVersionId
impl Sync for CacheVersionId
impl Unpin for CacheVersionId
impl UnwindSafe for CacheVersionId
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