Struct catalyst_entities::FragAddr
source · pub struct FragAddr {
pub index: u32,
pub thread: u8,
/* private fields */
}Fields§
§index: u32§thread: u8Implementations§
Trait Implementations§
source§impl Archive for FragAddrwhere
u32: Archive,
u8: Archive,
bool: Archive,
impl Archive for FragAddrwhere u32: Archive, u8: Archive, bool: Archive,
source§impl<__D: Fallible + ?Sized> Deserialize<FragAddr, __D> for Archived<FragAddr>where
u32: Archive,
Archived<u32>: Deserialize<u32, __D>,
u8: Archive,
Archived<u8>: Deserialize<u8, __D>,
bool: Archive,
Archived<bool>: Deserialize<bool, __D>,
impl<__D: Fallible + ?Sized> Deserialize<FragAddr, __D> for Archived<FragAddr>where u32: Archive, Archived<u32>: Deserialize<u32, __D>, u8: Archive, Archived<u8>: Deserialize<u8, __D>, bool: Archive, Archived<bool>: Deserialize<bool, __D>,
source§impl Ord for FragAddr
impl Ord for FragAddr
source§impl PartialEq<FragAddr> for FragAddr
impl PartialEq<FragAddr> for FragAddr
source§impl PartialOrd<FragAddr> for FragAddr
impl PartialOrd<FragAddr> for FragAddr
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl<__S: Fallible + ?Sized> Serialize<__S> for FragAddrwhere
u32: Serialize<__S>,
u8: Serialize<__S>,
bool: Serialize<__S>,
impl<__S: Fallible + ?Sized> Serialize<__S> for FragAddrwhere u32: Serialize<__S>, u8: Serialize<__S>, bool: Serialize<__S>,
impl Copy for FragAddr
impl Eq for FragAddr
impl StructuralEq for FragAddr
impl StructuralPartialEq for FragAddr
Auto Trait Implementations§
impl ArchiveCopy for FragAddr
impl NoInteriorMutability for FragAddr
impl RefUnwindSafe for FragAddr
impl Send for FragAddr
impl Sync for FragAddr
impl Unpin for FragAddr
impl UnwindSafe for FragAddr
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
source§impl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere T: Archive,
§type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
The archived counterpart of this type. Unlike
Archive, it may be unsized. Read more§type MetadataResolver = ()
type MetadataResolver = ()
The resolver for the metadata of this type. Read more
source§unsafe fn resolve_metadata(
&self,
_: usize,
_: <T as ArchiveUnsized>::MetadataResolver,
_: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
)
unsafe fn resolve_metadata( &self, _: usize, _: <T as ArchiveUnsized>::MetadataResolver, _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata )
Creates the archived version of the metadata for this value at the given position and writes
it to the given output. Read more