pub struct EventKindCollision {
pub kind_bits: u16,
pub first_type_name: &'static str,
pub second_type_name: &'static str,
}Expand description
One duplicate EventKind registration discovered in the current binary.
Fields§
§kind_bits: u16Packed (category << 12) | type_id representation.
first_type_name: &'static strFirst registered type name for kind_bits.
second_type_name: &'static strSecond registered type name for kind_bits.
Trait Implementations§
Source§impl Clone for EventKindCollision
impl Clone for EventKindCollision
Source§fn clone(&self) -> EventKindCollision
fn clone(&self) -> EventKindCollision
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventKindCollision
impl Debug for EventKindCollision
Source§impl PartialEq for EventKindCollision
impl PartialEq for EventKindCollision
Source§fn eq(&self, other: &EventKindCollision) -> bool
fn eq(&self, other: &EventKindCollision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EventKindCollision
impl Eq for EventKindCollision
impl StructuralPartialEq for EventKindCollision
Auto Trait Implementations§
impl Freeze for EventKindCollision
impl RefUnwindSafe for EventKindCollision
impl Send for EventKindCollision
impl Sync for EventKindCollision
impl Unpin for EventKindCollision
impl UnsafeUnpin for EventKindCollision
impl UnwindSafe for EventKindCollision
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