Skip to main content

UUID

Struct UUID 

Source
pub struct UUID { /* private fields */ }
Expand description

A UUID represented as a 16-byte array

Implementations§

Source§

impl UUID

Source

pub const NIL: Self

The nil UUID, where all bits are set to zero.

00000000-0000-0000-0000-000000000000
Source

pub const MAX: Self

The max UUID, where all bits are set to one.

ffffffff-ffff-ffff-ffff-ffffffffffff
Source

pub const NS_DNS: Self

The DNS namespace UUID, for generating v3/v5 UUIDs from domain names.

Defined in RFC 4122 Appendix C.

6ba7b810-9dad-11d1-80b4-00c04fd430c8
Source

pub const NS_URL: Self

The URL namespace UUID, for generating v3/v5 UUIDs from URLs.

Defined in RFC 4122 Appendix C.

6ba7b811-9dad-11d1-80b4-00c04fd430c8
Source

pub const NS_OID: Self

The OID namespace UUID, for generating v3/v5 UUIDs from ISO OIDs.

Defined in RFC 4122 Appendix C.

6ba7b812-9dad-11d1-80b4-00c04fd430c8
Source

pub const NS_X500: Self

The X.500 namespace UUID, for generating v3/v5 UUIDs from X.500 DNs.

Defined in RFC 4122 Appendix C.

6ba7b814-9dad-11d1-80b4-00c04fd430c8
Source

pub const BLUETOOTH_BASE: Self

The Bluetooth Base UUID.

Used to construct full 128-bit UUIDs from 16-bit and 32-bit Bluetooth identifiers. To convert a 16-bit UUID xxxx: 0000xxxx-0000-1000-8000-00805f9b34fb.

Defined in the Bluetooth Core Specification.

00000000-0000-1000-8000-00805f9b34fb
Source

pub const GPT_EFI_SYSTEM: Self

EFI System Partition type GUID.

The FAT-formatted partition containing UEFI bootloaders and drivers.

c12a7328-f81f-11d2-ba4b-00a0c93ec93b
Source

pub const GPT_LINUX_FS: Self

Linux filesystem data partition type GUID.

The generic type for Linux filesystem partitions (ext4, xfs, btrfs, etc.).

0fc63daf-8483-4772-8e79-3d69d8477de4
Source

pub const GPT_LINUX_SWAP: Self

Linux swap partition type GUID.

0657fd6d-a4ab-43c4-84e5-0933c84b4f4f
Source

pub const GPT_LINUX_ROOT_X86_64: Self

Linux root partition (x86-64) type GUID.

Used by systemd-gpt-auto-generator for automatic root discovery.

4f68bce3-e8cd-4db1-96e7-fbcaf984b709
Source

pub const GPT_LINUX_HOME: Self

Linux home partition type GUID.

Used by systemd-gpt-auto-generator for automatic /home discovery.

933ac7e1-2eb4-4f13-b844-0e14e2aef915
Source

pub const GPT_MS_BASIC_DATA: Self

Microsoft Basic Data partition type GUID.

Used for NTFS and FAT partitions on GPT disks.

ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
Source

pub const COM_IUNKNOWN: Self

The IUnknown interface GUID.

The fundamental COM interface that all COM objects must implement.

00000000-0000-0000-c000-000000000046
Source§

impl UUID

Source

pub const fn parse_const(s: &str) -> [u8; 16]

Parse a UUID string at compile time.

This is a const fn used by the uuid! macro. Prefer using the macro for better error messages.

§Panics

Panics at compile time if the string is not a valid UUID.

Source§

impl UUID

Source

pub const fn as_bytes(&self) -> &[u8; 16]

Source§

impl UUID

Source

pub const fn as_mut_bytes(&mut self) -> &mut [u8; 16]

Source§

impl UUID

Source

pub const fn duration_to_ticks( duration: Duration, ) -> Result<u64, DurationToTicksError>

Generates an RFC 4122 timestamp from a Duration.

The timestamp represents the number of 100-nanosecond intervals since the Gregorian epoch (1582-10-15 00:00:00 UTC).

§Returns

The number of full 100-ns segments is returned as a u64.

§Errors
  • DurationToTicksError::TimestampOverflow is returned if the duration corresponds to a value of ( 2^{60} ) or greater, which would overflow the 60 bits available for the timestamp. This occurs for dates beyond 5236-03-31.
Source§

impl UUID

Source

pub const fn braced(self) -> Braced

Returns a formatter for the braced format.

§Example
use ps_uuid::UUID;

let uuid = UUID::nil();
assert_eq!(uuid.braced().to_string(), "{00000000-0000-0000-0000-000000000000}");
Source§

impl UUID

Source

pub const fn hyphenated(self) -> Hyphenated

Returns a formatter for the hyphenated (standard) format.

This produces the same output as the Display implementation.

§Example
use ps_uuid::UUID;

let uuid = UUID::nil();
assert_eq!(uuid.hyphenated().to_string(), "00000000-0000-0000-0000-000000000000");
Source§

impl UUID

Source

pub const fn simple(self) -> Simple

Returns a formatter for the simple (non-hyphenated) format.

§Example
use ps_uuid::UUID;

let uuid = UUID::nil();
assert_eq!(uuid.simple().to_string(), "00000000000000000000000000000000");
Source§

impl UUID

Source

pub const fn urn(self) -> Urn

Returns a formatter for the URN format.

§Example
use ps_uuid::UUID;

let uuid = UUID::nil();
assert_eq!(uuid.urn().to_string(), "urn:uuid:00000000-0000-0000-0000-000000000000");
Source§

impl UUID

Source

pub const fn from_bytes(bytes: [u8; 16]) -> Self

Source§

impl UUID

Source

pub fn from_parts_dcom( time_low: u32, time_mid: u16, time_hi_and_version: u16, clock_seq: u16, node: [u8; 6], ) -> Self

Creates a new DCOM UUID with the specified time_low, time_mid, time_hi_and_version, clock_seq, and node fields.

§Arguments
  • time_low - The low field of the timestamp (32 bits)
  • time_mid - The middle field of the timestamp (16 bits)
  • time_hi_and_version - The high field of the timestamp and version (16 bits)
  • clock_seq - The clock sequence (14 bits, but passed as 16 bits)
  • node - The node ID (48 bits, passed as 6 bytes)
§Returns

A UUID with the DCOM variant (0b110) set

Source§

impl UUID

Source

pub fn from_parts_ncs( timestamp: &[u8; 6], address_family: u8, address: &[u8; 7], ) -> Self

Constructs a new NCS UUID (Variant 0) from pre-computed timestamp bytes, address family, and address.

§Parameters
  • timestamp: 6-byte timestamp in 4-microsecond units since 1980-01-01 00:00 UTC (big-endian).
  • address_family: Network address family (0-13).
  • address: 7-byte node ID (e.g., extended MAC address or unique host identifier).
§NCS UUID Structure
  • Timestamp (48 bits): Raw timestamp bytes in 4-microsecond units since 1980-01-01 00:00 UTC.
  • Reserved (16 bits): Set to 0.
  • Address Family (8 bits): Network type identifier.
  • Node ID (56 bits): Unique host identifier.
§Returns

A new NCS UUID with the specified components.

§Example
let timestamp = [93, 16, 39, 53, 62, 58]; // Pre-computed timestamp bytes
let address = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07];
let uuid = ps_uuid::UUID::from_parts_ncs(&timestamp, 2, &address);
Source§

impl UUID

Source

pub fn from_parts_v1( time_low: u32, time_mid: u16, time_hi: u16, clock_seq: u16, node_id: [u8; 6], ) -> Self

Build a RFC 4122 version-1 (time-based) UUID from its individual wire-format fields.

Arguments must already be laid out exactly as described in RFC 4122 §4.1 (big-endian/network order):

  • time_low: 32 least-significant bits of the 60-bit timestamp
  • time_mid: next 16 bits of the timestamp
  • time_hi: next 12 bits of the timestamp (upper 4 bits will be overwritten with the version by with_version)
  • clock_seq: 14-bit clock sequence; the two variant control bits are set by with_version
  • node_id: 48-bit IEEE 802 MAC address (or random host id)

The function never fails; all bit fiddling is guaranteed to be valid by construction. The returned value satisfies uuid.version() == Version::Time and uuid.variant() == Variant::OSF.

Source§

impl UUID

Source

pub fn from_parts_v2( domain: u8, local_id: u32, time_mid: u16, time_hi: u16, clock_seq: u16, node_id: [u8; 6], ) -> Self

Build a DCE Security (v2) UUID from its individual fields.

Source§

impl UUID

Source

pub const fn from_parts_v3(digest: [u8; 16]) -> Self

Builds an RFC-4122 Version-3 UUID from a raw 16-byte MD5 digest.

The caller must supply the digest that results from hashing namespace.bytes || name. The function overwrites the version and variant fields via .with_version(3) and returns the finished UUID.

Source§

impl UUID

Source

pub const fn from_parts_v4(bytes: [u8; 16]) -> Self

Constructs a Version 4 (random) UUID from 16 bytes.

The version and variant fields are set according to RFC 4122.

Source§

impl UUID

Source

pub fn from_parts_v5<D>(digest: D) -> Self
where D: AsRef<[u8]>,

Builds an RFC-4122 Version-5 UUID from a raw 20-byte SHA-1 digest.

The caller must supply the digest that results from hashing namespace.bytes || name. The first 16 bytes of the digest are copied into the UUID; the version and variant fields are then fixed via .with_version(5).

Source§

impl UUID

Source

pub fn from_parts_v6( time_high: u32, time_mid: u16, time_low: u16, clock_seq: u16, node_id: [u8; 6], ) -> Self

Builds an RFC-4122 Version 6 (time-ordered) UUID from its constituent fields.

Timestamp layout (big-endian, network order):

  • time_high – most-significant 32 bits of the 60-bit timestamp
  • time_mid – next 16 bits of the timestamp
  • time_low – least-significant 12 bits of the timestamp

Remaining fields:

  • clock_seq – 14-bit clock sequence (high-to-low order)
  • node_id – 48-bit node identifier (usually a MAC address)

The function performs all bit manipulation internally, then calls .with_version(6) to patch in the version nibble (0b0110) and the RFC-4122 variant bits (0b10xxxxxx). It never fails.

Source§

impl UUID

Source

pub fn from_parts_v7(unix_ts_ms: u64, rand_a: u16, rand_b: u64) -> Self

Build a Version-7 (time-ordered) UUID from its constituent fields.

Arguments

  • unix_ts_ms – milliseconds since 1970-01-01 00:00:00 UTC
    (only the least-significant 48 bits are used)
  • rand_a – 12 bits of random data
  • rand_b – 62 additional random bits

The function never fails; it masks super-fluous upper bits and then calls .with_version(7) which patches in both the version nibble and the RFC-4122 variant.

Source§

impl UUID

Source

pub const fn from_parts_v8(bytes: [u8; 16]) -> Self

Constructs a Version 8 (custom) UUID from 16 bytes.

The version and variant fields are set according to RFC 4122.

Source§

impl UUID

Source

pub const fn from_u128(value: u128) -> Self

Creates a UUID from a u128 integer in big-endian byte order.

This is a const fn equivalent of UUID::from(value).

Source§

impl UUID

Source

pub fn gen_dcom(node_id: [u8; 6]) -> Result<Self, UuidConstructionError>

Generates a new DCOM UUID using the current system time and the provided node ID.

§Arguments
  • node_id - The node ID (6 bytes)
§Errors
Source§

impl UUID

Source

pub fn gen_ncs( address_family: u8, address: &[u8; 7], ) -> Result<Self, NcsUuidError>

Generates a new NCS UUID (Variant 0).

§Errors

This method returns NcsUuidError::TimestampOverflow after 2015.

Source§

impl UUID

Source

pub fn gen_v1() -> Result<Self, UuidConstructionError>

Generate an RFC 4122 version-1 (time-based) UUID.

The current system time and process-wide NodeId and clock sequence are used.

§Errors
  • TimestampBeforeEpoch is returned if the current time predates 1582-10-15.
  • TimestampOverflow is returned if the current time exceeds 5236-03-31.
Source§

impl UUID

Source

pub fn gen_v2(domain: u8, local_id: u32) -> Result<Self, UuidConstructionError>

Generate v2 UUID (DCE Security)

§Errors
  • TimestampBeforeEpoch is returned if the current time predates 1582-10-15.
  • TimestampOverflow is returned if the current time exceeds 5236-03-31.
Source§

impl UUID

Source

pub fn gen_v4() -> Self

Generates a random (v4) UUID.

Source§

impl UUID

Source

pub fn gen_v6() -> Result<Self, UuidConstructionError>

Generate an RFC 4122 version-6 (time-ordered) UUID.

The current system time together with the process-wide NodeId and clock sequence held in the global STATE are used.

§Errors
  • TimestampBeforeEpoch if the current time predates 1582-10-15.
  • TimestampOverflow if the current time exceeds 5236-03-31.
Source§

impl UUID

Source

pub fn gen_v7() -> Result<Self, UuidConstructionError>

Generate an RFC-4122 Version 7 (Unix-epoch, time-ordered) UUID.

Steps

  1. STATE.next_v7 returns a strictly monotonous SystemTime.
  2. That time is converted to a Duration since the Unix epoch.
  3. Range checks ensure the 48-bit millisecond field is valid (epoch … ≈ 10889-08-02 05:31:50.655 UTC).
  4. The remaining 64 random bits (8 bytes) are filled with CSPRNG data.
  5. UUID::new_v7 assembles the final UUID and patches version & variant bits.
§Errors
  • TimestampBeforeEpoch if the system clock is before 1970-01-01.
  • TimestampOverflow if the millisecond counter ≥ 2⁴⁸.
Source§

impl UUID

Source

pub const fn get_clock_seq(&self) -> Option<u16>

Source§

impl UUID

Source

pub const fn get_node_id(&self) -> Option<NodeId>

Source§

impl UUID

Source

pub fn get_timestamp(&self) -> Option<SystemTime>

Extract the embedded timestamp as a SystemTime, if present.

Returns None if the UUID does not encode a timestamp.

Source§

impl UUID

Source

pub const fn get_variant(&self) -> Variant

Source§

impl UUID

Source

pub const fn get_version(&self) -> Option<u8>

Source§

impl UUID

Source

pub const fn max() -> Self

Source§

impl UUID

Source

pub fn new_dcom( timestamp: SystemTime, node_id: [u8; 6], ) -> Result<Self, UuidConstructionError>

Creates a new DCOM UUID using the specified timestamp and node ID.

This generates a DCOM UUID following Microsoft’s DCOM specification, which predates RFC 4122 and uses its own format and algorithms.

§Arguments
  • timestamp - The system time to use for the UUID
  • node_id - The node ID (6 bytes)
§Errors
Source§

impl UUID

Source

pub fn new_ncs( timestamp: SystemTime, address_family: u8, address: &[u8; 7], ) -> Result<Self, NcsUuidError>

Generates a new NCS UUID (Variant 0) from a timestamp, address family, and node ID.

§Parameters
  • timestamp: System time for UUID generation.
  • address_family: Network address family (0–13, per NCS specification).
  • address: 7-byte node ID (e.g., extended MAC address or unique host ID).
§NCS UUID Structure
  • Timestamp (48 bits): 4-microsecond units since 1980-01-01 00:00 UTC.
  • Reserved (16 bits): Set to 0.
  • Address Family (8 bits): Network type (0–13).
  • Node ID (56 bits): Unique host identifier.
§Returns
  • Ok(UUID) on success.
  • Err(GenNcsError) if the timestamp is invalid or the address family is out of range.
§Errors
  • AddressFamilyOutOfRange is returned if address_family doesn’t satisfy 0..=13
  • TimestampBeforeEpoch is returned if timestamp is before 1980-01-01
  • TimestampOverflow is returned if timestamp is after 2015-09-05T05:58:26.842Z
§Example
use std::time::{SystemTime, Duration};
let time = SystemTime::UNIX_EPOCH + Duration::from_secs(315532800 + 3600);
let uuid = ps_uuid::UUID::new_ncs(time, 2, &[0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07]);
Source§

impl UUID

Source

pub fn new_v1( time: SystemTime, clock_seq: u16, node_id: [u8; 6], ) -> Result<Self, UuidConstructionError>

Create an RFC 4122 version-1 (time-based) UUID from a SystemTime, clock sequence, and a 48-bit node identifier.

§Errors
  • TimestampBeforeEpoch is returned if time predates 1582-10-15.
  • TimestampOverflow is returned if time exceeds 5236-03-31.
Source§

impl UUID

Source

pub fn new_v2( domain: u8, local_id: u32, time: SystemTime, clock_seq: u16, node_id: [u8; 6], ) -> Result<Self, UuidConstructionError>

Generate a v2 UUID from wall-clock time plus the extra DCE fields.

§Errors
  • TimestampBeforeEpoch is returned if time predates 1582-10-15.
  • TimestampOverflow is returned if time exceeds 5236-03-31.
Source§

impl UUID

Source

pub fn new_v3<N>(namespace: &Self, name: N) -> Self
where N: AsRef<[u8]>,

Builds an RFC-4122 Version-3 UUID from namespace || name.

The function

  1. hashes the concatenation namespace.bytes || name with MD5,
  2. calls from_parts_v3 to set version = 3 + RFC-4122 variant,
  3. returns the finished UUID.
Source§

impl UUID

Source

pub fn new_v4<R: RngCore + ?Sized>(rng: &mut R) -> Self

Generates a random (v4) UUID using the provided random number generator.

Source§

impl UUID

Source

pub fn new_v5<N>(namespace: &Self, name: N) -> Self
where N: AsRef<[u8]>,

Builds an RFC-4122 Version-5 UUID from namespace || name.

Steps

  1. Hash namespace.bytes || name with SHA-1.
  2. Pass the first 16 bytes of the digest to from_parts_v5.
Source§

impl UUID

Source

pub fn new_v6( time: SystemTime, clock_seq: u16, node_id: [u8; 6], ) -> Result<Self, UuidConstructionError>

Create an RFC 4122 version-6 (time-ordered) UUID from a SystemTime, a 14-bit clock sequence and a 48-bit node identifier.

§Errors
  • TimestampBeforeEpoch if time predates 1582-10-15.
  • TimestampOverflow if the 60-bit tick counter would overflow.
Source§

impl UUID

Source

pub fn new_v7(timestamp: Duration, random_bytes: [u8; 8]) -> Self

Build an RFC-4122 Version 7 (Unix-epoch, time-ordered) UUID.

Layout (big-endian, draft RFC “UUID Version 7”, 2022-07-07):

  • bytes 0‥=5 – 48-bit Unix epoch timestamp in milliseconds
  • bytes 6‥=7 – 12 extra timestamp bits derived from the current sub-millisecond nanoseconds
    • upper nibble of byte 6 is the version (7)
  • bytes 8‥=15 – 64 bits of caller-supplied randomness
    • two MSBs of byte 8 are the RFC-4122 variant

The timestamp argument expresses the elapsed time since 1970-01-01 00:00:00 UTC (Duration::as_millis() must fit into 48 bits).
random_bytes supplies the final eight random bytes that complete the 128-bit UUID.

The function never fails; any excess upper bits in the timestamp are truncated, and the version (0b0111) and variant (0b10xxxxxx) fields are fixed automatically.

Source§

impl UUID

Source

pub fn new_v8<V: Into<u128>>(value: V) -> Self

Build an RFC-4122 Version 8 (custom) UUID from any value convertible to u128.

The caller supplies the complete 128-bit payload (in host order). This function:

  • Converts the value to a u128
  • Serializes it to big-endian (network order)
  • Overwrites the version nibble (bits 48‥=51) with 0b1000
  • Overwrites the variant bits (bits 64‥=65) with 0b10
  • Leaves all other bits untouched
§Example
use ps_uuid::UUID;

let payload: u128 = 0xDEAD_BEEF_DEAD_BEEF_DEAD_BEEF_DEAD_BEEF;
let uuid = UUID::new_v8(payload);

assert_eq!(uuid.get_version(), Some(8));
Source§

impl UUID

Source

pub const fn nil() -> Self

Source§

impl UUID

Source

pub const fn is_nil(&self) -> bool

Returns true if this is the nil UUID (all zeros).

Source

pub const fn is_max(&self) -> bool

Returns true if this is the max UUID (all ones).

Source

pub const fn is_ncs(&self) -> bool

Returns true if this is an NCS variant UUID.

Source

pub const fn is_osf(&self) -> bool

Returns true if this is an OSF/RFC 4122 variant UUID.

Source

pub const fn is_dcom(&self) -> bool

Returns true if this is a Microsoft DCOM variant UUID.

Source

pub const fn is_reserved(&self) -> bool

Returns true if this is a reserved variant UUID.

Source

pub const fn is_v1(&self) -> bool

Returns true if this is a version 1 (time-based) UUID.

Source

pub const fn is_v2(&self) -> bool

Returns true if this is a version 2 (DCE Security) UUID.

Source

pub const fn is_v3(&self) -> bool

Returns true if this is a version 3 (MD5 hash) UUID.

Source

pub const fn is_v4(&self) -> bool

Returns true if this is a version 4 (random) UUID.

Source

pub const fn is_v5(&self) -> bool

Returns true if this is a version 5 (SHA-1 hash) UUID.

Source

pub const fn is_v6(&self) -> bool

Returns true if this is a version 6 (reordered time-based) UUID.

Source

pub const fn is_v7(&self) -> bool

Returns true if this is a version 7 (Unix epoch time-based) UUID.

Source

pub const fn is_v8(&self) -> bool

Returns true if this is a version 8 (custom) UUID.

Source§

impl UUID

Source

pub const fn set_variant(&mut self, variant: Variant)

Source§

impl UUID

Source

pub const fn set_version(&mut self, version: u8)

Source§

impl UUID

Source

pub fn system_time_to_ticks( time: SystemTime, ) -> Result<u64, UuidConstructionError>

Converts a SystemTime into an RFC 4122 timestamp (ticks).

§Arguments
  • time - The SystemTime to convert.
§Returns

The number of 100-nanosecond intervals between the Gregorian epoch (1582-10-15) and the provided time.

§Errors
Source§

impl UUID

Source

pub const fn to_u128(&self) -> u128

Returns the UUID as a u128 integer in big-endian byte order.

This is a const fn equivalent of u128::from(uuid).

Source§

impl UUID

Source

pub const fn with_variant(self, variant: Variant) -> Self

Source§

impl UUID

Source

pub const fn with_version(self, version: u8) -> Self

Trait Implementations§

Source§

impl<'a, 'b> Add<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: IntOperand> Add<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: IntOperand> Add<T> for UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UUID) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for UUID

Source§

type Output = UUID

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&UUID> for UUID

Source§

fn add_assign(&mut self, rhs: &Self)

Performs the += operation. Read more
Source§

impl<T: IntOperand> AddAssign<T> for UUID

Source§

fn add_assign(&mut self, rhs: T)

Performs the += operation. Read more
Source§

impl AddAssign for UUID

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl AsRef<[u8]> for UUID

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<[u8; 16]> for UUID

Source§

fn as_ref(&self) -> &[u8; 16]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<'a, 'b> BitAnd<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &Self) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl<T: IntOperand> BitAnd<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: T) -> Self::Output

Performs the & operation. Read more
Source§

impl<T: IntOperand> BitAnd<T> for UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: T) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: UUID) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd for UUID

Source§

type Output = UUID

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAndAssign<&UUID> for UUID

Source§

fn bitand_assign(&mut self, rhs: &Self)

Performs the &= operation. Read more
Source§

impl<T: IntOperand> BitAndAssign<T> for UUID

Source§

fn bitand_assign(&mut self, rhs: T)

Performs the &= operation. Read more
Source§

impl BitAndAssign for UUID

Source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
Source§

impl<'a, 'b> BitOr<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &Self) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl<T: IntOperand> BitOr<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: T) -> Self::Output

Performs the | operation. Read more
Source§

impl<T: IntOperand> BitOr<T> for UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: T) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UUID) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr for UUID

Source§

type Output = UUID

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOrAssign<&UUID> for UUID

Source§

fn bitor_assign(&mut self, rhs: &Self)

Performs the |= operation. Read more
Source§

impl<T: IntOperand> BitOrAssign<T> for UUID

Source§

fn bitor_assign(&mut self, rhs: T)

Performs the |= operation. Read more
Source§

impl BitOrAssign for UUID

Source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
Source§

impl<'a, 'b> BitXor<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &Self) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<T: IntOperand> BitXor<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: T) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<T: IntOperand> BitXor<T> for UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: T) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UUID) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor for UUID

Source§

type Output = UUID

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXorAssign<&UUID> for UUID

Source§

fn bitxor_assign(&mut self, rhs: &Self)

Performs the ^= operation. Read more
Source§

impl<T: IntOperand> BitXorAssign<T> for UUID

Source§

fn bitxor_assign(&mut self, rhs: T)

Performs the ^= operation. Read more
Source§

impl BitXorAssign for UUID

Source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
Source§

impl Clone for UUID

Source§

fn clone(&self) -> UUID

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for UUID

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for UUID

Source§

fn default() -> UUID

Returns the “default value” for a type. Read more
Source§

impl Display for UUID

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, 'b> Div<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Self) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: IntOperand> Div<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: IntOperand> Div<T> for UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UUID) -> Self::Output

Performs the / operation. Read more
Source§

impl Div for UUID

Source§

type Output = UUID

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<&UUID> for UUID

Source§

fn div_assign(&mut self, rhs: &Self)

Performs the /= operation. Read more
Source§

impl<T: IntOperand> DivAssign<T> for UUID

Source§

fn div_assign(&mut self, rhs: T)

Performs the /= operation. Read more
Source§

impl DivAssign for UUID

Source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
Source§

impl From<[u8; 16]> for UUID

Source§

fn from(bytes: [u8; 16]) -> Self

Converts to this type from the input type.
Source§

impl From<Braced> for UUID

Source§

fn from(braced: Braced) -> Self

Converts to this type from the input type.
Source§

impl From<Hyphenated> for UUID

Source§

fn from(hyphenated: Hyphenated) -> Self

Converts to this type from the input type.
Source§

impl From<Simple> for UUID

Source§

fn from(simple: Simple) -> Self

Converts to this type from the input type.
Source§

impl From<UUID> for [u8; 16]

Source§

fn from(uuid: UUID) -> Self

Converts to this type from the input type.
Source§

impl From<UUID> for i128

Source§

fn from(uuid: UUID) -> Self

Converts to this type from the input type.
Source§

impl From<UUID> for u128

Source§

fn from(uuid: UUID) -> Self

Converts to this type from the input type.
Source§

impl From<Urn> for UUID

Source§

fn from(urn: Urn) -> Self

Converts to this type from the input type.
Source§

impl From<i128> for UUID

Source§

fn from(v: i128) -> Self

Converts to this type from the input type.
Source§

impl From<i16> for UUID

Source§

fn from(v: i16) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for UUID

Source§

fn from(v: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for UUID

Source§

fn from(v: i64) -> Self

Converts to this type from the input type.
Source§

impl From<i8> for UUID

Source§

fn from(v: i8) -> Self

Converts to this type from the input type.
Source§

impl From<isize> for UUID

Source§

fn from(v: isize) -> Self

Converts to this type from the input type.
Source§

impl From<u128> for UUID

Source§

fn from(v: u128) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for UUID

Source§

fn from(v: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for UUID

Source§

fn from(v: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u64> for UUID

Source§

fn from(v: u64) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for UUID

Source§

fn from(v: u8) -> Self

Converts to this type from the input type.
Source§

impl From<usize> for UUID

Source§

fn from(v: usize) -> Self

Converts to this type from the input type.
Source§

impl FromStr for UUID

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Accept every standard UUID spelling:

  • canonical 36-byte form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  • 32 hex digits without hyphens xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  • surrounded by braces {…} (either of the above)
  • as an URN urn:uuid:<canonical>
Source§

type Err = UuidParseError

The associated error which can be returned from parsing.
Source§

impl Hash for UUID

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Index<Range<usize>> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: Range<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeFrom<usize>> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: RangeFrom<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeFull> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, _index: RangeFull) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeInclusive<usize>> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: RangeInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeTo<usize>> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: RangeTo<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<RangeToInclusive<usize>> for UUID

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, index: RangeToInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for UUID

Source§

type Output = u8

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<Range<usize>> for UUID

Source§

fn index_mut(&mut self, index: Range<usize>) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<RangeFrom<usize>> for UUID

Source§

fn index_mut(&mut self, index: RangeFrom<usize>) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<RangeFull> for UUID

Source§

fn index_mut(&mut self, _index: RangeFull) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<RangeInclusive<usize>> for UUID

Source§

fn index_mut(&mut self, index: RangeInclusive<usize>) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<RangeTo<usize>> for UUID

Source§

fn index_mut(&mut self, index: RangeTo<usize>) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<RangeToInclusive<usize>> for UUID

Source§

fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for UUID

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<'a, 'b> Mul<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Self) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: IntOperand> Mul<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: IntOperand> Mul<T> for UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UUID) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul for UUID

Source§

type Output = UUID

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<&UUID> for UUID

Source§

fn mul_assign(&mut self, rhs: &Self)

Performs the *= operation. Read more
Source§

impl<T: IntOperand> MulAssign<T> for UUID

Source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
Source§

impl MulAssign for UUID

Source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
Source§

impl Neg for &UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Neg for UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Not for &UUID

Source§

type Output = UUID

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl Not for UUID

Source§

type Output = UUID

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl Ord for UUID

Source§

fn cmp(&self, other: &UUID) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for UUID

Source§

fn eq(&self, other: &UUID) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for UUID

Source§

fn partial_cmp(&self, other: &UUID) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<'a, 'b> Rem<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &Self) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl<T: IntOperand> Rem<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
Source§

impl<T: IntOperand> Rem<T> for UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UUID) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem for UUID

Source§

type Output = UUID

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
Source§

impl RemAssign<&UUID> for UUID

Source§

fn rem_assign(&mut self, rhs: &Self)

Performs the %= operation. Read more
Source§

impl<T: IntOperand> RemAssign<T> for UUID

Source§

fn rem_assign(&mut self, rhs: T)

Performs the %= operation. Read more
Source§

impl RemAssign for UUID

Source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
Source§

impl<T: ShiftAmount> Shl<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: T) -> Self::Output

Performs the << operation. Read more
Source§

impl<T: ShiftAmount> Shl<T> for UUID

Source§

type Output = UUID

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: T) -> Self::Output

Performs the << operation. Read more
Source§

impl<T: ShiftAmount> ShlAssign<T> for UUID

Source§

fn shl_assign(&mut self, rhs: T)

Performs the <<= operation. Read more
Source§

impl<T: ShiftAmount> Shr<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: T) -> Self::Output

Performs the >> operation. Read more
Source§

impl<T: ShiftAmount> Shr<T> for UUID

Source§

type Output = UUID

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: T) -> Self::Output

Performs the >> operation. Read more
Source§

impl<T: ShiftAmount> ShrAssign<T> for UUID

Source§

fn shr_assign(&mut self, rhs: T)

Performs the >>= operation. Read more
Source§

impl<'a, 'b> Sub<&'a UUID> for &'b UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for i128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for i16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for i32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for i64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for i8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for isize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for u128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for u16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for u32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for u64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for u8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&UUID> for usize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: IntOperand> Sub<T> for &UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: IntOperand> Sub<T> for UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &i128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &i16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &i32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &i64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &i8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &isize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &u128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &u16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &u32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &u64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &u8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for &usize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for i128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for i16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for i32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for i64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for i8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for isize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for u128

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for u16

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for u32

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for u64

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for u8

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<UUID> for usize

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UUID) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for UUID

Source§

type Output = UUID

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<&UUID> for UUID

Source§

fn sub_assign(&mut self, rhs: &Self)

Performs the -= operation. Read more
Source§

impl<T: IntOperand> SubAssign<T> for UUID

Source§

fn sub_assign(&mut self, rhs: T)

Performs the -= operation. Read more
Source§

impl SubAssign for UUID

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl TryFrom<UUID> for i16

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for i32

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for i64

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for i8

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for isize

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for u16

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for u32

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for u64

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for u8

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<UUID> for usize

Source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
Source§

fn try_from(uuid: UUID) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for UUID

Source§

impl Eq for UUID

Source§

impl StructuralPartialEq for UUID

Auto Trait Implementations§

§

impl Freeze for UUID

§

impl RefUnwindSafe for UUID

§

impl Send for UUID

§

impl Sync for UUID

§

impl Unpin for UUID

§

impl UnsafeUnpin for UUID

§

impl UnwindSafe for UUID

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToHex for T
where T: AsRef<[u8]>,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V