pub struct RecordKey {
pub kind: u8,
pub sys_id: u64,
}Expand description
Fully qualified record key used by runtime hosts.
Fields§
§kind: u8Stable record kind.
sys_id: u64Host-assigned system identifier.
Trait Implementations§
Source§impl From<RecordKey> for RuntimeRecordKeyView
impl From<RecordKey> for RuntimeRecordKeyView
Source§impl From<RuntimeRecordKeyView> for RecordKey
impl From<RuntimeRecordKeyView> for RecordKey
Source§fn from(value: RuntimeRecordKeyView) -> Self
fn from(value: RuntimeRecordKeyView) -> Self
Converts to this type from the input type.
Source§impl Ord for RecordKey
impl Ord for RecordKey
Source§impl PartialOrd for RecordKey
impl PartialOrd for RecordKey
impl Copy for RecordKey
impl Eq for RecordKey
impl StructuralPartialEq for RecordKey
Auto Trait Implementations§
impl Freeze for RecordKey
impl RefUnwindSafe for RecordKey
impl Send for RecordKey
impl Sync for RecordKey
impl Unpin for RecordKey
impl UnsafeUnpin for RecordKey
impl UnwindSafe for RecordKey
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