pub(super) struct AuraKey {
aura_id: u32,
target_id: u32,
affected_kind: i32,
affected_id: u32,
source_kind: i32,
source_id: u32,
pull_id: Option<u32>,
group_id: Option<u32>,
}Expand description
Field order matches the emitted-row contract (drives Ord); hash identity is order-independent.
Fields§
§aura_id: u32§target_id: u32§affected_kind: i32§affected_id: u32§source_kind: i32§source_id: u32§pull_id: Option<u32>§group_id: Option<u32>Trait Implementations§
Source§impl Ord for AuraKey
impl Ord for AuraKey
Source§impl PartialOrd for AuraKey
impl PartialOrd for AuraKey
impl Copy for AuraKey
impl Eq for AuraKey
impl StructuralPartialEq for AuraKey
Auto Trait Implementations§
impl Freeze for AuraKey
impl RefUnwindSafe for AuraKey
impl Send for AuraKey
impl Sync for AuraKey
impl Unpin for AuraKey
impl UnsafeUnpin for AuraKey
impl UnwindSafe for AuraKey
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