pub struct EntityId(pub u64);Expand description
The unique identifier for a CFDP entity, stored as an owned u64.
CFDP Entity IDs are variable-length integers up to 8 bytes. This type
normalizes them to a u64 for easy storage, comparison, and hashing.
Tuple Fields§
§0: u64Implementations§
Source§impl EntityId
impl EntityId
Trait Implementations§
Source§impl Ord for EntityId
impl Ord for EntityId
Source§impl PartialOrd for EntityId
impl PartialOrd for EntityId
impl Copy for EntityId
impl Eq for EntityId
impl StructuralPartialEq for EntityId
Auto Trait Implementations§
impl Freeze for EntityId
impl RefUnwindSafe for EntityId
impl Send for EntityId
impl Sync for EntityId
impl Unpin for EntityId
impl UnsafeUnpin for EntityId
impl UnwindSafe for EntityId
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