pub trait Hash {
// Required method
fn hash<H>(&self, state: &mut H)
where H: Hasher;
// Provided method
fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher,
Self: Sized { ... }
}
Expand description
A hashable type.
Types implementing Hash
are able to be hash
ed with an instance of
Hasher
.
§Implementing Hash
You can derive Hash
with #[derive(Hash)]
if all fields implement Hash
.
The resulting hash will be the combination of the values from calling
hash
on each field.
#[derive(Hash)]
struct Rustacean {
name: String,
country: String,
}
If you need more control over how a value is hashed, you can of course
implement the Hash
trait yourself:
use std::hash::{Hash, Hasher};
struct Person {
id: u32,
name: String,
phone: u64,
}
impl Hash for Person {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
self.phone.hash(state);
}
}
§Hash
and Eq
When implementing both Hash
and Eq
, it is important that the following
property holds:
k1 == k2 -> hash(k1) == hash(k2)
In other words, if two keys are equal, their hashes must also be equal.
HashMap
and HashSet
both rely on this behavior.
Thankfully, you won’t need to worry about upholding this property when
deriving both Eq
and Hash
with #[derive(PartialEq, Eq, Hash)]
.
Violating this property is a logic error. The behavior resulting from a logic error is not
specified, but users of the trait must ensure that such logic errors do not result in
undefined behavior. This means that unsafe
code must not rely on the correctness of these
methods.
§Prefix collisions
Implementations of hash
should ensure that the data they
pass to the Hasher
are prefix-free. That is,
values which are not equal should cause two different sequences of values to be written,
and neither of the two sequences should be a prefix of the other.
For example, the standard implementation of Hash
for &str
passes an extra
0xFF
byte to the Hasher
so that the values ("ab", "c")
and ("a", "bc")
hash differently.
§Portability
Due to differences in endianness and type sizes, data fed by Hash
to a Hasher
should not be considered portable across platforms. Additionally the data passed by most
standard library types should not be considered stable between compiler versions.
This means tests shouldn’t probe hard-coded hash values or data fed to a Hasher
and
instead should check consistency with Eq
.
Serialization formats intended to be portable between platforms or compiler versions should
either avoid encoding hashes or only rely on Hash
and Hasher
implementations that
provide additional guarantees.
Required Methods§
Provided Methods§
1.3.0 · Sourcefn hash_slice<H>(data: &[Self], state: &mut H)
fn hash_slice<H>(data: &[Self], state: &mut H)
Feeds a slice of this type into the given Hasher
.
This method is meant as a convenience, but its implementation is
also explicitly left unspecified. It isn’t guaranteed to be
equivalent to repeated calls of hash
and implementations of
Hash
should keep that in mind and call hash
themselves
if the slice isn’t treated as a whole unit in the PartialEq
implementation.
For example, a VecDeque
implementation might naïvely call
as_slices
and then hash_slice
on each slice, but this
is wrong since the two slices can change with a call to
make_contiguous
without affecting the PartialEq
result. Since these slices aren’t treated as singular
units, and instead part of a larger deque, this method cannot
be used.
§Examples
use std::hash::{DefaultHasher, Hash, Hasher};
let mut hasher = DefaultHasher::new();
let numbers = [6, 28, 496, 8128];
Hash::hash_slice(&numbers, &mut hasher);
println!("Hash is {:x}!", hasher.finish());
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl Hash for BlendMode
impl Hash for ElementState
impl Hash for comfy_core::KeyCode
impl Hash for comfy_core::MouseButton
impl Hash for comfy_core::TextureHandle
impl Hash for Uniform
impl Hash for AsciiChar
impl Hash for core::cmp::Ordering
impl Hash for Infallible
impl Hash for IpAddr
impl Hash for Ipv6MulticastScope
impl Hash for SocketAddr
impl Hash for core::sync::atomic::Ordering
impl Hash for std::io::error::ErrorKind
impl Hash for ChmapPosition
impl Hash for ChmapType
impl Hash for ElemIface
impl Hash for ElemType
impl Hash for SelemChannelId
impl Hash for alsa::pcm::Access
impl Hash for AudioTstampType
impl Hash for alsa::pcm::Format
impl Hash for State
impl Hash for TstampType
impl Hash for alsa::seq::EventType
impl Hash for InsertWithKeyError
impl Hash for CheckedCastError
impl Hash for PodCastError
impl Hash for byteorder::BigEndian
impl Hash for byteorder::LittleEndian
impl Hash for Colons
impl Hash for Fixed
impl Hash for Numeric
impl Hash for OffsetPrecision
impl Hash for Pad
impl Hash for ParseErrorKind
impl Hash for SecondsFormat
impl Hash for Month
impl Hash for Weekday
impl Hash for HostId
impl Hash for CursorIcon
impl Hash for HexColor
impl Hash for AboveOrBelow
impl Hash for egui::data::key::Key
impl Hash for Order
impl Hash for SizeHint
impl Hash for OperatingSystem
impl Hash for TextStyle
impl Hash for ViewportClass
impl Hash for Align
impl Hash for WriteStyle
impl Hash for TextureId
impl Hash for FontFamily
impl Hash for TextureFilter
impl Hash for TextureWrapMode
impl Hash for RoundingMode
impl Hash for BlockType
impl Hash for EnvironmentMap
impl Hash for LevelMode
impl Hash for LineOrder
impl Hash for SampleType
impl Hash for BlockDescription
impl Hash for gimli::common::Format
impl Hash for SectionId
impl Hash for RunTimeEndian
impl Hash for glam::euler::EulerRot
impl Hash for glam::euler::EulerRot
impl Hash for ComponentError
impl Hash for QueryOneError
impl Hash for ColorType
impl Hash for ExtendedColorType
impl Hash for ImageFormatHint
impl Hash for LimitErrorKind
impl Hash for ParameterErrorKind
impl Hash for UnsupportedErrorKind
impl Hash for image::flat::Error
impl Hash for NormalForm
impl Hash for image::image::ImageFormat
impl Hash for ColorTransform
impl Hash for UnsupportedFeature
impl Hash for WhenToStart
impl Hash for OutputDestination
impl Hash for PlaybackState
impl Hash for StartTime
impl Hash for EqFilterKind
impl Hash for TrackId
impl Hash for fsconfig_command
impl Hash for membarrier_cmd
impl Hash for membarrier_cmd_flag
impl Hash for linux_raw_sys::net::_bindgen_ty_1
impl Hash for linux_raw_sys::net::_bindgen_ty_2
impl Hash for linux_raw_sys::net::_bindgen_ty_3
impl Hash for linux_raw_sys::net::_bindgen_ty_4
impl Hash for linux_raw_sys::net::_bindgen_ty_5
impl Hash for linux_raw_sys::net::_bindgen_ty_6
impl Hash for linux_raw_sys::net::_bindgen_ty_7
impl Hash for linux_raw_sys::net::_bindgen_ty_8
impl Hash for linux_raw_sys::net::_bindgen_ty_9
impl Hash for net_device_flags
impl Hash for nf_dev_hooks
impl Hash for nf_inet_hooks
impl Hash for nf_ip6_hook_priorities
impl Hash for nf_ip_hook_priorities
impl Hash for socket_state
impl Hash for tcp_ca_state
impl Hash for tcp_fastopen_client_fail
impl Hash for linux_raw_sys::netlink::_bindgen_ty_1
impl Hash for linux_raw_sys::netlink::_bindgen_ty_2
impl Hash for linux_raw_sys::netlink::_bindgen_ty_3
impl Hash for linux_raw_sys::netlink::_bindgen_ty_4
impl Hash for linux_raw_sys::netlink::_bindgen_ty_5
impl Hash for linux_raw_sys::netlink::_bindgen_ty_6
impl Hash for linux_raw_sys::netlink::_bindgen_ty_7
impl Hash for linux_raw_sys::netlink::_bindgen_ty_8
impl Hash for linux_raw_sys::netlink::_bindgen_ty_9
impl Hash for _bindgen_ty_10
impl Hash for _bindgen_ty_11
impl Hash for _bindgen_ty_12
impl Hash for _bindgen_ty_13
impl Hash for _bindgen_ty_14
impl Hash for _bindgen_ty_15
impl Hash for _bindgen_ty_16
impl Hash for _bindgen_ty_17
impl Hash for _bindgen_ty_18
impl Hash for _bindgen_ty_19
impl Hash for _bindgen_ty_20
impl Hash for _bindgen_ty_21
impl Hash for _bindgen_ty_22
impl Hash for _bindgen_ty_23
impl Hash for _bindgen_ty_24
impl Hash for _bindgen_ty_25
impl Hash for _bindgen_ty_26
impl Hash for _bindgen_ty_27
impl Hash for _bindgen_ty_28
impl Hash for _bindgen_ty_29
impl Hash for _bindgen_ty_30
impl Hash for _bindgen_ty_31
impl Hash for _bindgen_ty_32
impl Hash for _bindgen_ty_33
impl Hash for _bindgen_ty_34
impl Hash for _bindgen_ty_35
impl Hash for _bindgen_ty_36
impl Hash for _bindgen_ty_37
impl Hash for _bindgen_ty_38
impl Hash for _bindgen_ty_39
impl Hash for _bindgen_ty_40
impl Hash for _bindgen_ty_41
impl Hash for _bindgen_ty_42
impl Hash for _bindgen_ty_43
impl Hash for _bindgen_ty_44
impl Hash for _bindgen_ty_45
impl Hash for _bindgen_ty_46
impl Hash for _bindgen_ty_47
impl Hash for _bindgen_ty_48
impl Hash for _bindgen_ty_49
impl Hash for _bindgen_ty_50
impl Hash for _bindgen_ty_51
impl Hash for _bindgen_ty_52
impl Hash for _bindgen_ty_53
impl Hash for _bindgen_ty_54
impl Hash for _bindgen_ty_55
impl Hash for _bindgen_ty_56
impl Hash for _bindgen_ty_57
impl Hash for _bindgen_ty_58
impl Hash for _bindgen_ty_59
impl Hash for _bindgen_ty_60
impl Hash for _bindgen_ty_61
impl Hash for _bindgen_ty_62
impl Hash for _bindgen_ty_63
impl Hash for _bindgen_ty_64
impl Hash for _bindgen_ty_65
impl Hash for _bindgen_ty_66
impl Hash for ifla_geneve_df
impl Hash for ifla_gtp_role
impl Hash for ifla_vxlan_df
impl Hash for in6_addr_gen_mode
impl Hash for ipvlan_mode
impl Hash for macsec_offload
impl Hash for macsec_validation_type
impl Hash for macvlan_macaddr_mode
impl Hash for macvlan_mode
impl Hash for netlink_attribute_type
impl Hash for netlink_policy_type_attr
impl Hash for nl_mmap_status
impl Hash for nlmsgerr_attrs
impl Hash for rt_class_t
impl Hash for rt_scope_t
impl Hash for rtattr_type_t
impl Hash for rtnetlink_groups
impl Hash for log::Level
impl Hash for log::LevelFilter
impl Hash for CompressionStrategy
impl Hash for TDEFLFlush
impl Hash for TDEFLStatus
impl Hash for CompressionLevel
impl Hash for miniz_oxide::DataFormat
impl Hash for miniz_oxide::DataFormat
impl Hash for miniz_oxide::MZError
impl Hash for miniz_oxide::MZError
impl Hash for miniz_oxide::MZFlush
impl Hash for miniz_oxide::MZFlush
impl Hash for miniz_oxide::MZStatus
impl Hash for miniz_oxide::MZStatus
impl Hash for miniz_oxide::inflate::TINFLStatus
impl Hash for miniz_oxide::inflate::TINFLStatus
impl Hash for ExtraXYZ
impl Hash for ExtraZXZ
impl Hash for ExtraZYX
impl Hash for IntraXYZ
impl Hash for IntraZXZ
impl Hash for IntraZYX
impl Hash for RecursiveMode
impl Hash for WatcherKind
impl Hash for AccessKind
impl Hash for AccessMode
impl Hash for CreateKind
impl Hash for DataChange
impl Hash for EventKind
impl Hash for Flag
impl Hash for MetadataKind
impl Hash for ModifyKind
impl Hash for RemoveKind
impl Hash for RenameMode
impl Hash for AddressSize
impl Hash for Architecture
impl Hash for BinaryFormat
impl Hash for ComdatKind
impl Hash for FileFlags
impl Hash for RelocationEncoding
impl Hash for RelocationKind
impl Hash for SectionFlags
impl Hash for SectionKind
impl Hash for SegmentFlags
impl Hash for SubArchitecture
impl Hash for SymbolKind
impl Hash for SymbolScope
impl Hash for Endianness
impl Hash for ArchiveKind
impl Hash for ImportType
impl Hash for CompressionFormat
impl Hash for FileKind
impl Hash for ObjectKind
impl Hash for RelocationTarget
impl Hash for SymbolSection
impl Hash for PollMode
impl Hash for RawDisplayHandle
impl Hash for RawWindowHandle
impl Hash for TimerfdClockId
impl Hash for rustix::clockid::ClockId
impl Hash for Direction
impl Hash for SocketAddrAny
impl Hash for Timeout
impl Hash for Shutdown
impl Hash for SpinStrategy
impl Hash for StandardTagKey
impl Hash for StandardVisualKey
impl Hash for GlyphClass
impl Hash for Permissions
impl Hash for ttf_parser::tables::os2::Style
impl Hash for ttf_parser::tables::os2::Style
impl Hash for ttf_parser::tables::os2::Weight
impl Hash for ttf_parser::tables::os2::Weight
impl Hash for ttf_parser::tables::os2::Width
impl Hash for ttf_parser::tables::os2::Width
impl Hash for Ime
impl Hash for winit::event::MouseButton
impl Hash for TouchPhase
impl Hash for DeviceEvents
impl Hash for winit::keyboard::KeyCode
impl Hash for KeyLocation
impl Hash for NamedKey
impl Hash for NativeKey
impl Hash for NativeKeyCode
impl Hash for PhysicalKey
impl Hash for WindowType
impl Hash for CursorGrabMode
impl Hash for ResizeDirection
impl Hash for OpenErrorKind
impl Hash for x11rb_protocol::protocol::ErrorKind
impl Hash for zerocopy::byteorder::BigEndian
impl Hash for zerocopy::byteorder::LittleEndian
impl Hash for bool
impl Hash for char
impl Hash for i8
impl Hash for i16
impl Hash for i32
impl Hash for i64
impl Hash for i128
impl Hash for isize
impl Hash for !
impl Hash for str
impl Hash for u8
impl Hash for u16
impl Hash for u32
impl Hash for u64
impl Hash for u128
impl Hash for ()
impl Hash for usize
impl Hash for ByteString
impl Hash for CString
impl Hash for String
impl Hash for Layout
impl Hash for core::any::TypeId
impl Hash for ByteStr
impl Hash for CStr
impl Hash for core::fmt::Error
impl Hash for PhantomPinned
impl Hash for Ipv4Addr
impl Hash for Ipv6Addr
impl Hash for SocketAddrV4
impl Hash for SocketAddrV6
impl Hash for RangeFull
impl Hash for Alignment
impl Hash for OsStr
impl Hash for OsString
impl Hash for FileType
impl Hash for std::os::unix::net::ucred::UCred
impl Hash for PathBuf
impl Hash for PrefixComponent<'_>
impl Hash for ThreadId
impl Hash for SystemTime
impl Hash for InvalidFont
impl Hash for ab_glyph::glyph::GlyphId
impl Hash for MilliBel
impl Hash for alsa::poll::Flags
impl Hash for Addr
impl Hash for Connect
impl Hash for EvCtrl
impl Hash for EvNote
impl Hash for EvResult
impl Hash for PortCap
impl Hash for PortType
impl Hash for Remove
impl Hash for ArenaFull
impl Hash for atomic_arena::Key
impl Hash for Parsed
impl Hash for InternalFixed
impl Hash for InternalNumeric
impl Hash for OffsetFormat
impl Hash for ParseError
impl Hash for Months
impl Hash for NaiveDate
impl Hash for NaiveDateDaysIterator
impl Hash for NaiveDateWeeksIterator
impl Hash for NaiveDateTime
impl Hash for IsoWeek
impl Hash for Days
impl Hash for NaiveWeek
impl Hash for NaiveTime
impl Hash for FixedOffset
impl Hash for Utc
impl Hash for OutOfRange
impl Hash for TimeDelta
impl Hash for WeekdaySet
impl Hash for InputStreamTimestamp
impl Hash for OutputStreamTimestamp
impl Hash for StreamInstant
impl Hash for Color32
impl Hash for ecolor::rgba::Rgba
impl Hash for KeyboardShortcut
impl Hash for Modifiers
impl Hash for egui::id::Id
impl Hash for LayerId
impl Hash for egui::util::id_type_map::TypeId
impl Hash for ViewportId
impl Hash for ViewportIdPair
impl Hash for Align2
impl Hash for encoding_rs::Encoding
impl Hash for Stroke
impl Hash for FontId
impl Hash for LayoutJob
impl Hash for LayoutSection
impl Hash for TextFormat
impl Hash for TextWrapping
impl Hash for epaint::texture_handle::TextureHandle
impl Hash for TextureOptions
impl Hash for AllocId
impl Hash for AllocatorOptions
impl Hash for UnknownUnit
impl Hash for BoolVector2D
impl Hash for BoolVector3D
impl Hash for TileCoordinates
impl Hash for LineIndex
impl Hash for BlockIndex
impl Hash for ValidationOptions
impl Hash for ChannelDescription
impl Hash for ChannelList
impl Hash for IntegerBounds
impl Hash for exr::meta::attribute::KeyCode
impl Hash for Text
impl Hash for TileDescription
impl Hash for TimeCode
impl Hash for Requirements
impl Hash for TileIndices
impl Hash for FileTime
impl Hash for Font
impl Hash for GlyphRasterConfig
impl Hash for DebugTypeSignature
impl Hash for DwoId
impl Hash for gimli::common::Encoding
impl Hash for LineEncoding
impl Hash for Register
impl Hash for DwAccess
impl Hash for DwAddr
impl Hash for DwAt
impl Hash for DwAte
impl Hash for DwCc
impl Hash for DwCfa
impl Hash for DwChildren
impl Hash for DwDefaulted
impl Hash for DwDs
impl Hash for DwDsc
impl Hash for DwEhPe
impl Hash for DwEnd
impl Hash for DwForm
impl Hash for DwId
impl Hash for DwIdx
impl Hash for DwInl
impl Hash for DwLang
impl Hash for DwLle
impl Hash for DwLnct
impl Hash for DwLne
impl Hash for DwLns
impl Hash for DwMacro
impl Hash for DwOp
impl Hash for DwOrd
impl Hash for DwRle
impl Hash for DwSect
impl Hash for DwSectV2
impl Hash for DwTag
impl Hash for DwUt
impl Hash for DwVirtuality
impl Hash for DwVis
impl Hash for gimli::endianity::BigEndian
impl Hash for gimli::endianity::LittleEndian
impl Hash for gimli::read::rnglists::Range
impl Hash for glam::bool::bvec2::BVec2
impl Hash for glam::bool::bvec2::BVec2
impl Hash for glam::bool::bvec3::BVec3
impl Hash for glam::bool::bvec3::BVec3
impl Hash for glam::bool::bvec4::BVec4
impl Hash for glam::bool::bvec4::BVec4
impl Hash for glam::bool::sse2::bvec3a::BVec3A
impl Hash for glam::bool::sse2::bvec3a::BVec3A
impl Hash for glam::bool::sse2::bvec4a::BVec4A
impl Hash for glam::bool::sse2::bvec4a::BVec4A
impl Hash for I16Vec2
impl Hash for I16Vec3
impl Hash for I16Vec4
impl Hash for glam::i32::ivec2::IVec2
impl Hash for glam::i32::ivec3::IVec3
impl Hash for glam::i32::ivec3::IVec3
impl Hash for glam::i32::ivec4::IVec4
impl Hash for glam::i32::ivec4::IVec4
impl Hash for glam::i64::i64vec2::I64Vec2
impl Hash for glam::i64::i64vec2::I64Vec2
impl Hash for glam::i64::i64vec3::I64Vec3
impl Hash for glam::i64::i64vec3::I64Vec3
impl Hash for glam::i64::i64vec4::I64Vec4
impl Hash for glam::i64::i64vec4::I64Vec4
impl Hash for U16Vec2
impl Hash for U16Vec3
impl Hash for U16Vec4
impl Hash for glam::u32::uvec2::UVec2
impl Hash for glam::u32::uvec3::UVec3
impl Hash for glam::u32::uvec3::UVec3
impl Hash for glam::u32::uvec4::UVec4
impl Hash for glam::u32::uvec4::UVec4
impl Hash for glam::u64::u64vec2::U64Vec2
impl Hash for glam::u64::u64vec2::U64Vec2
impl Hash for glam::u64::u64vec3::U64Vec3
impl Hash for glam::u64::u64vec3::U64Vec3
impl Hash for glam::u64::u64vec4::U64Vec4
impl Hash for glam::u64::u64vec4::U64Vec4
impl Hash for BatchIncomplete
impl Hash for MissingComponent
impl Hash for humantime::wrapper::Duration
impl Hash for Timestamp
impl Hash for SampleLayout
impl Hash for LimitSupport
impl Hash for Limits
impl Hash for image::math::rect::Rect
impl Hash for inotify::events::EventMask
impl Hash for WatchDescriptor
impl Hash for WatchMask
impl Hash for kira::clock::ClockId
impl Hash for ClockTime
impl Hash for MockBackendSettings
impl Hash for Capacities
impl Hash for ModulatorId
impl Hash for EmitterId
impl Hash for ListenerId
impl Hash for SpatialSceneId
impl Hash for SubTrackId
impl Hash for miniz_oxide::StreamResult
impl Hash for miniz_oxide::StreamResult
impl Hash for Token
impl Hash for Config
impl Hash for notify::event::Event
impl Hash for object::endian::BigEndian
impl Hash for object::endian::LittleEndian
impl Hash for CompressedFileRange
impl Hash for SectionIndex
impl Hash for SymbolIndex
impl Hash for ChunkType
impl Hash for Transformations
impl Hash for AndroidDisplayHandle
impl Hash for AndroidNdkWindowHandle
impl Hash for AppKitDisplayHandle
impl Hash for AppKitWindowHandle
impl Hash for HaikuDisplayHandle
impl Hash for HaikuWindowHandle
impl Hash for OhosDisplayHandle
impl Hash for OhosNdkWindowHandle
impl Hash for OrbitalDisplayHandle
impl Hash for OrbitalWindowHandle
impl Hash for UiKitDisplayHandle
impl Hash for UiKitWindowHandle
impl Hash for DrmDisplayHandle
impl Hash for DrmWindowHandle
impl Hash for GbmDisplayHandle
impl Hash for GbmWindowHandle
impl Hash for WaylandDisplayHandle
impl Hash for WaylandWindowHandle
impl Hash for XcbDisplayHandle
impl Hash for XcbWindowHandle
impl Hash for XlibDisplayHandle
impl Hash for XlibWindowHandle
impl Hash for WebCanvasWindowHandle
impl Hash for WebDisplayHandle
impl Hash for WebOffscreenCanvasWindowHandle
impl Hash for WebWindowHandle
impl Hash for Win32WindowHandle
impl Hash for WinRtWindowHandle
impl Hash for WindowsDisplayHandle
impl Hash for rustix::backend::event::epoll::CreateFlags
impl Hash for EventFlags
impl Hash for PollFlags
impl Hash for EventfdFlags
impl Hash for rustix::backend::fs::inotify::CreateFlags
impl Hash for ReadFlags
impl Hash for WatchFlags
impl Hash for rustix::backend::fs::types::Access
impl Hash for AtFlags
impl Hash for FallocateFlags
impl Hash for MemfdFlags
impl Hash for Mode
impl Hash for OFlags
impl Hash for RenameFlags
impl Hash for ResolveFlags
impl Hash for SealFlags
impl Hash for StatVfsMountFlags
impl Hash for StatxFlags
impl Hash for Errno
impl Hash for DupFlags
impl Hash for FdFlags
impl Hash for ReadWriteFlags
impl Hash for MountFlags
impl Hash for MountPropagationFlags
impl Hash for UnmountFlags
impl Hash for SocketAddrUnix
impl Hash for RecvFlags
impl Hash for SendFlags
impl Hash for PipeFlags
impl Hash for SpliceFlags
impl Hash for rustix::backend::thread::futex::Flags
impl Hash for TimerfdFlags
impl Hash for TimerfdTimerFlags
impl Hash for rustix::event::epoll::Event
impl Hash for XattrFlags
impl Hash for Opcode
impl Hash for AddressFamily
impl Hash for Protocol
impl Hash for SocketFlags
impl Hash for SocketType
impl Hash for rustix::net::types::UCred
impl Hash for SockaddrXdpFlags
impl Hash for SocketAddrXdp
impl Hash for XdpDesc
impl Hash for XdpDescOptions
impl Hash for XdpMmapOffsets
impl Hash for XdpOptions
impl Hash for XdpOptionsFlags
impl Hash for XdpRingFlags
impl Hash for XdpRingOffset
impl Hash for XdpStatistics
impl Hash for XdpUmemReg
impl Hash for XdpUmemRegFlags
impl Hash for Pid
impl Hash for Cpuid
impl Hash for MembarrierQuery
impl Hash for PidfdFlags
impl Hash for PidfdGetfdFlags
impl Hash for FloatingPointEmulationControl
impl Hash for FloatingPointExceptionMode
impl Hash for SpeculationFeatureControl
impl Hash for SpeculationFeatureState
impl Hash for UnalignedAccessControl
impl Hash for CpuSet
impl Hash for WaitOptions
impl Hash for WaitidOptions
impl Hash for CapabilityFlags
impl Hash for CapabilitiesSecureBits
impl Hash for TaggedAddressMode
impl Hash for ThreadNameSpaceType
impl Hash for Gid
impl Hash for Uid
impl Hash for Handle
impl Hash for SmolStr
impl Hash for SpinSleeper
impl Hash for Channels
impl Hash for CodecType
impl Hash for Identifier
impl Hash for Field
impl Hash for tracing_core::metadata::Level
impl Hash for tracing_core::metadata::LevelFilter
impl Hash for tracing_core::span::Id
impl Hash for Span
impl Hash for ttf_parser::GlyphId
impl Hash for ttf_parser::GlyphId
impl Hash for ttf_parser::Tag
impl Hash for ttf_parser::Tag
impl Hash for ttf_parser::tables::os2::ScriptMetrics
impl Hash for ttf_parser::tables::os2::ScriptMetrics
impl Hash for DeviceId
impl Hash for KeyEvent
impl Hash for RawKeyEvent
impl Hash for ModifiersState
impl Hash for VideoMode
impl Hash for WindowButtons
impl Hash for WindowId
impl Hash for Connection
impl Hash for ModeFlag
impl Hash for Notify
impl Hash for NotifyMask
impl Hash for ProviderCapability
impl Hash for Rotation
impl Hash for SetConfig
impl Hash for Transform
impl Hash for CP
impl Hash for PictOp
impl Hash for PictType
impl Hash for PictureEnum
impl Hash for PolyEdge
impl Hash for PolyMode
impl Hash for Repeat
impl Hash for SubPixel
impl Hash for SK
impl Hash for SO
impl Hash for BarrierDirections
impl Hash for ClientDisconnectFlags
impl Hash for CursorNotify
impl Hash for CursorNotifyMask
impl Hash for RegionEnum
impl Hash for SaveSetMapping
impl Hash for SaveSetMode
impl Hash for SaveSetTarget
impl Hash for SelectionEvent
impl Hash for SelectionEventMask
impl Hash for BarrierFlags
impl Hash for ChangeDevice
impl Hash for ChangeFeedbackControlMask
impl Hash for ChangeMode
impl Hash for ChangeReason
impl Hash for ClassesReportedMask
impl Hash for Device
impl Hash for DeviceChange
impl Hash for DeviceClassType
impl Hash for DeviceControl
impl Hash for DeviceInputMode
impl Hash for DeviceType
impl Hash for DeviceUse
impl Hash for EventMode
impl Hash for FeedbackClass
impl Hash for GesturePinchEventFlags
impl Hash for GestureSwipeEventFlags
impl Hash for GrabMode22
impl Hash for GrabOwner
impl Hash for GrabType
impl Hash for HierarchyChangeType
impl Hash for HierarchyMask
impl Hash for InputClass
impl Hash for KeyEventFlags
impl Hash for ModifierDevice
impl Hash for ModifierMask
impl Hash for MoreEventsMask
impl Hash for x11rb_protocol::protocol::xinput::NotifyDetail
impl Hash for x11rb_protocol::protocol::xinput::NotifyMode
impl Hash for PointerEventFlags
impl Hash for PropagateMode
impl Hash for PropertyFlag
impl Hash for PropertyFormat
impl Hash for ScrollFlags
impl Hash for ScrollType
impl Hash for TouchEventFlags
impl Hash for TouchMode
impl Hash for TouchOwnershipFlags
impl Hash for ValuatorMode
impl Hash for ValuatorStateModeMask
impl Hash for XIEventMask
impl Hash for AXNDetail
impl Hash for AXOption
impl Hash for ActionMessageFlag
impl Hash for BehaviorType
impl Hash for BellClass
impl Hash for BellClassResult
impl Hash for BoolCtrl
impl Hash for BoolCtrlsHigh
impl Hash for BoolCtrlsLow
impl Hash for CMDetail
impl Hash for Const
impl Hash for Control
impl Hash for DoodadType
impl Hash for x11rb_protocol::protocol::xkb::Error
impl Hash for x11rb_protocol::protocol::xkb::EventType
impl Hash for Explicit
impl Hash for GBNDetail
impl Hash for Group
impl Hash for Groups
impl Hash for GroupsWrap
impl Hash for ID
impl Hash for IMFlag
impl Hash for IMGroupsWhich
impl Hash for IMModsWhich
impl Hash for LedClass
impl Hash for LedClassResult
impl Hash for LockDeviceFlags
impl Hash for MapPart
impl Hash for NKNDetail
impl Hash for NameDetail
impl Hash for PerClientFlag
impl Hash for SA
impl Hash for SAIsoLockFlag
impl Hash for SAIsoLockNoAffect
impl Hash for SAMovePtrFlag
impl Hash for SASetPtrDfltFlag
impl Hash for SAType
impl Hash for SAValWhat
impl Hash for SetMapFlags
impl Hash for SetOfGroup
impl Hash for SetOfGroups
impl Hash for StatePart
impl Hash for SwitchScreenFlag
impl Hash for SymInterpMatch
impl Hash for SymInterpretMatch
impl Hash for VMod
impl Hash for VModsHigh
impl Hash for VModsLow
impl Hash for XIFeature
impl Hash for AccessControl
impl Hash for Allow
impl Hash for ArcMode
impl Hash for AtomEnum
impl Hash for AutoRepeatMode
impl Hash for BackPixmap
impl Hash for BackingStore
impl Hash for Blanking
impl Hash for ButtonIndex
impl Hash for ButtonMask
impl Hash for CW
impl Hash for CapStyle
impl Hash for Circulate
impl Hash for ClipOrdering
impl Hash for CloseDown
impl Hash for ColorFlag
impl Hash for ColormapAlloc
impl Hash for ColormapEnum
impl Hash for ColormapState
impl Hash for ConfigWindow
impl Hash for CoordMode
impl Hash for CursorEnum
impl Hash for x11rb_protocol::protocol::xproto::EventMask
impl Hash for Exposures
impl Hash for Family
impl Hash for FillRule
impl Hash for FillStyle
impl Hash for FontDraw
impl Hash for FontEnum
impl Hash for GC
impl Hash for GX
impl Hash for GetPropertyType
impl Hash for Grab
impl Hash for GrabMode
impl Hash for GrabStatus
impl Hash for Gravity
impl Hash for HostMode
impl Hash for x11rb_protocol::protocol::xproto::ImageFormat
impl Hash for ImageOrder
impl Hash for InputFocus
impl Hash for JoinStyle
impl Hash for KB
impl Hash for KeyButMask
impl Hash for Kill
impl Hash for LedMode
impl Hash for LineStyle
impl Hash for MapIndex
impl Hash for MapState
impl Hash for Mapping
impl Hash for MappingStatus
impl Hash for ModMask
impl Hash for Motion
impl Hash for x11rb_protocol::protocol::xproto::NotifyDetail
impl Hash for x11rb_protocol::protocol::xproto::NotifyMode
impl Hash for PixmapEnum
impl Hash for Place
impl Hash for PolyShape
impl Hash for PropMode
impl Hash for Property
impl Hash for QueryShapeOf
impl Hash for ScreenSaver
impl Hash for SendEventDest
impl Hash for SetMode
impl Hash for StackMode
impl Hash for SubwindowMode
impl Hash for Time
impl Hash for Visibility
impl Hash for VisualClass
impl Hash for WindowClass
impl Hash for WindowEnum
impl Hash for xkeysym::KeyCode
impl Hash for Keysym
impl Hash for UserData
impl Hash for comfy_core::Duration
impl Hash for Entity
impl Hash for FontHandle
impl Hash for comfy_core::IVec2
impl Hash for Index
impl Hash for Instant
impl Hash for MeshGroupKey
impl Hash for Path
impl Hash for RenderTargetId
impl Hash for SemanticVer
impl Hash for ShaderId
impl Hash for ShaderInstanceId
impl Hash for Sound
impl Hash for comfy_core::UVec2
impl Hash for EventData
impl<'a> Hash for Component<'a>
impl<'a> Hash for Prefix<'a>
impl<'a> Hash for Item<'a>
impl<'a> Hash for PhantomContravariantLifetime<'a>
impl<'a> Hash for PhantomCovariantLifetime<'a>
impl<'a> Hash for PhantomInvariantLifetime<'a>
impl<'a> Hash for Location<'a>
impl<'a> Hash for Metadata<'a>
impl<'a> Hash for MetadataBuilder<'a>
impl<'a> Hash for DisplayHandle<'a>
impl<'a> Hash for WindowHandle<'a>
impl<'data> Hash for CompressedData<'data>
impl<'data> Hash for ObjectMapEntry<'data>
impl<'data> Hash for SymbolMapName<'data>
impl<'input, Endian> Hash for EndianSlice<'input, Endian>
impl<A> Hash for SmallVec<A>
impl<A, B> Hash for EitherOrBoth<A, B>
impl<B> Hash for Cow<'_, B>
impl<B, C> Hash for ControlFlow<B, C>
impl<Dyn> Hash for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Hash for I16Bytes<E>
impl<E> Hash for I32Bytes<E>
impl<E> Hash for I64Bytes<E>
impl<E> Hash for U16Bytes<E>
impl<E> Hash for U32Bytes<E>
impl<E> Hash for U64Bytes<E>
impl<F> Hash for Fwhere
F: FnPtr,
impl<Idx> Hash for core::ops::range::RangeFrom<Idx>where
Idx: Hash,
impl<Idx> Hash for core::ops::range::RangeInclusive<Idx>where
Idx: Hash,
impl<Idx> Hash for RangeTo<Idx>where
Idx: Hash,
impl<Idx> Hash for RangeToInclusive<Idx>where
Idx: Hash,
impl<Idx> Hash for core::range::Range<Idx>where
Idx: Hash,
impl<Idx> Hash for core::range::RangeFrom<Idx>where
Idx: Hash,
impl<Idx> Hash for core::range::RangeInclusive<Idx>where
Idx: Hash,
impl<Idx> Hash for comfy_core::Range<Idx>where
Idx: Hash,
impl<K, V, A> Hash for BTreeMap<K, V, A>
impl<L, R> Hash for Overwritten<L, R>
impl<L, R> Hash for Either<L, R>
impl<L, R> Hash for Or<L, R>
impl<L, R> Hash for BiBTreeMap<L, R>
impl<O> Hash for F32<O>where
O: Hash,
impl<O> Hash for F64<O>where
O: Hash,
impl<O> Hash for I16<O>where
O: Hash,
impl<O> Hash for I32<O>where
O: Hash,
impl<O> Hash for I64<O>where
O: Hash,
impl<O> Hash for I128<O>where
O: Hash,
impl<O> Hash for Isize<O>where
O: Hash,
impl<O> Hash for U16<O>where
O: Hash,
impl<O> Hash for U32<O>where
O: Hash,
impl<O> Hash for U64<O>where
O: Hash,
impl<O> Hash for U128<O>where
O: Hash,
impl<O> Hash for Usize<O>where
O: Hash,
impl<P> Hash for LogicalPosition<P>where
P: Hash,
impl<P> Hash for LogicalSize<P>where
P: Hash,
impl<P> Hash for PhysicalPosition<P>where
P: Hash,
impl<P> Hash for PhysicalSize<P>where
P: Hash,
impl<P, Container> Hash for ImageBuffer<P, Container>
impl<Ptr> Hash for Pin<Ptr>
impl<R> Hash for LocationListEntry<R>
impl<R> Hash for Expression<R>
impl<Section, Symbol> Hash for SymbolFlags<Section, Symbol>
impl<Storage> Hash for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>where
Storage: Hash,
impl<Storage> Hash for linux_raw_sys::net::__BindgenBitfieldUnit<Storage>where
Storage: Hash,
impl<Storage, Align> Hash for alsa_sys::__BindgenBitfieldUnit<Storage, Align>
impl<Str> Hash for winit::keyboard::Key<Str>where
Str: Hash,
impl<T> Hash for Poll<T>where
T: Hash,
impl<T> Hash for Bound<T>where
T: Hash,
impl<T> Hash for Option<T>where
T: Hash,
impl<T> Hash for LocalResult<T>where
T: Hash,
impl<T> Hash for UnitSectionOffset<T>where
T: Hash,
impl<T> Hash for *const Twhere
T: ?Sized,
impl<T> Hash for *mut Twhere
T: ?Sized,
impl<T> Hash for &T
impl<T> Hash for &mut T
impl<T> Hash for [T]where
T: Hash,
impl<T> Hash for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.
impl<T> Hash for Reverse<T>where
T: Hash,
impl<T> Hash for PhantomData<T>where
T: ?Sized,
impl<T> Hash for PhantomContravariant<T>where
T: ?Sized,
impl<T> Hash for PhantomCovariant<T>where
T: ?Sized,
impl<T> Hash for PhantomInvariant<T>where
T: ?Sized,
impl<T> Hash for ManuallyDrop<T>
impl<T> Hash for Discriminant<T>
impl<T> Hash for NonZero<T>where
T: ZeroablePrimitive + Hash,
impl<T> Hash for Saturating<T>where
T: Hash,
impl<T> Hash for Wrapping<T>where
T: Hash,
impl<T> Hash for NonNull<T>where
T: ?Sized,
impl<T> Hash for EvQueueControl<T>where
T: Hash,
impl<T> Hash for CachePadded<T>where
T: Hash,
impl<T> Hash for epaint::util::ordered_float::OrderedFloat<T>where
T: Float,
impl<T> Hash for Angle<T>where
T: Hash,
impl<T> Hash for Vec2<T>where
T: Hash,
impl<T> Hash for DebugAbbrevOffset<T>where
T: Hash,
impl<T> Hash for DebugFrameOffset<T>where
T: Hash,
impl<T> Hash for DebugInfoOffset<T>where
T: Hash,
impl<T> Hash for DebugMacinfoOffset<T>where
T: Hash,
impl<T> Hash for DebugMacroOffset<T>where
T: Hash,
impl<T> Hash for DebugTypesOffset<T>where
T: Hash,
impl<T> Hash for EhFrameOffset<T>where
T: Hash,
impl<T> Hash for LocationListsOffset<T>where
T: Hash,
impl<T> Hash for RangeListsOffset<T>where
T: Hash,
impl<T> Hash for RawRangeListsOffset<T>where
T: Hash,
impl<T> Hash for UnitOffset<T>where
T: Hash,
impl<T> Hash for Luma<T>where
T: Hash,
impl<T> Hash for LumaA<T>where
T: Hash,
impl<T> Hash for Rgb<T>where
T: Hash,
impl<T> Hash for image::color::Rgba<T>where
T: Hash,
impl<T> Hash for __BindgenUnionField<T>
impl<T> Hash for ColumnMatrix2<T>where
T: Hash,
impl<T> Hash for ColumnMatrix2x3<T>where
T: Hash,
impl<T> Hash for ColumnMatrix2x4<T>where
T: Hash,
impl<T> Hash for ColumnMatrix3<T>where
T: Hash,
impl<T> Hash for ColumnMatrix3x2<T>where
T: Hash,
impl<T> Hash for ColumnMatrix3x4<T>where
T: Hash,
impl<T> Hash for ColumnMatrix4<T>where
T: Hash,
impl<T> Hash for ColumnMatrix4x2<T>where
T: Hash,
impl<T> Hash for ColumnMatrix4x3<T>where
T: Hash,
impl<T> Hash for RowMatrix2<T>where
T: Hash,
impl<T> Hash for RowMatrix2x3<T>where
T: Hash,
impl<T> Hash for RowMatrix2x4<T>where
T: Hash,
impl<T> Hash for RowMatrix3<T>where
T: Hash,
impl<T> Hash for RowMatrix3x2<T>where
T: Hash,
impl<T> Hash for RowMatrix3x4<T>where
T: Hash,
impl<T> Hash for RowMatrix4<T>where
T: Hash,
impl<T> Hash for RowMatrix4x2<T>where
T: Hash,
impl<T> Hash for RowMatrix4x3<T>where
T: Hash,
impl<T> Hash for Quaternion<T>where
T: Hash,
impl<T> Hash for Point2<T>where
T: Hash,
impl<T> Hash for Point3<T>where
T: Hash,
impl<T> Hash for Vector2<T>where
T: Hash,
impl<T> Hash for Vector3<T>where
T: Hash,
impl<T> Hash for Vector4<T>where
T: Hash,
impl<T> Hash for NotNan<T>where
T: Float,
impl<T> Hash for EventLoopClosed<T>where
T: Hash,
impl<T> Hash for Unalign<T>
impl<T> Hash for Complex<T>where
T: Hash,
impl<T> Hash for comfy_core::OrderedFloat<T>where
T: Float,
impl<T, A> Hash for Box<T, A>
impl<T, A> Hash for BTreeSet<T, A>
impl<T, A> Hash for LinkedList<T, A>
impl<T, A> Hash for UniqueRc<T, A>
impl<T, A> Hash for UniqueArc<T, A>
impl<T, A> Hash for Vec<T, A>
The hash of a vector is the same as that of the corresponding slice,
as required by the core::borrow::Borrow
implementation.
use std::hash::BuildHasher;
let b = std::hash::RandomState::new();
let v: Vec<u8> = vec![0xa8, 0x3c, 0x09];
let s: &[u8] = &[0xa8, 0x3c, 0x09];
assert_eq!(b.hash_one(v), b.hash_one(s));
impl<T, A> Hash for Arc<T, A>
impl<T, A> Hash for Rc<T, A>
impl<T, A> Hash for VecDeque<T, A>
impl<T, B> Hash for EulerAngles<T, B>
impl<T, E> Hash for Result<T, E>
impl<T, Src, Dst> Hash for RigidTransform3D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Rotation2D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Rotation3D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Scale<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Transform2D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Transform3D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Translation2D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for Translation3D<T, Src, Dst>where
T: Hash,
impl<T, U> Hash for Box2D<T, U>where
T: Hash,
impl<T, U> Hash for Box3D<T, U>where
T: Hash,
impl<T, U> Hash for HomogeneousVector<T, U>where
T: Hash,
impl<T, U> Hash for Length<T, U>where
T: Hash,
impl<T, U> Hash for Point2D<T, U>where
T: Hash,
impl<T, U> Hash for Point3D<T, U>where
T: Hash,
impl<T, U> Hash for euclid::rect::Rect<T, U>where
T: Hash,
impl<T, U> Hash for SideOffsets2D<T, U>where
T: Hash,
impl<T, U> Hash for Size2D<T, U>where
T: Hash,
impl<T, U> Hash for Size3D<T, U>where
T: Hash,
impl<T, U> Hash for Vector2D<T, U>where
T: Hash,
impl<T, U> Hash for Vector3D<T, U>where
T: Hash,
impl<T, const CAP: usize> Hash for ArrayVec<T, CAP>where
T: Hash,
impl<T, const N: usize> Hash for [T; N]where
T: Hash,
The hash of an array is the same as that of the corresponding slice,
as required by the Borrow
implementation.
use std::hash::BuildHasher;
let b = std::hash::RandomState::new();
let a: [u8; 3] = [0xa8, 0x3c, 0x09];
let s: &[u8] = &[0xa8, 0x3c, 0x09];
assert_eq!(b.hash_one(a), b.hash_one(s));