Enum DataUnit128bitCopyWith

Source
pub enum DataUnit128bitCopyWith<C: DataUnitCopy> {
Show 68 variants None, With(C), U8(u8), I8(i8), ByteArray1([u8; 1]), Bool(bool), BitArray8(BitArray<(), 8, 1>), U16(u16), I16(i16), ByteArray2([u8; 2]), BitArray16(BitArray<(), 16, 2>), U32(u32), I32(i32), F32(f32), ByteArray4([u8; 4]), BitArray32(BitArray<(), 32, 4>), Char(char), U64(u64), I64(i64), F64(f64), ByteArray8([u8; 8]), BitArray64(BitArray<(), 64, 8>), U128(u128), I128(i128), ByteArray16([u8; 16]), BitArray128(BitArray<(), 128, 16>), Duration(Duration), Usize(usize), Isize(isize), F16(f16), BF16(bf16), ArrayString1(ArrayString<U1>), ArrayString3(ArrayString<U3>), TDate(Date), TUtcOffset(UtcOffset), FugitDuration32Hours(Duration<u32, 3_600, 1>), FugitDuration32Minutes(Duration<u32, 60, 1>), FugitDuration32Seconds(Duration<u32, 1, 1>), FugitDuration32Millis(Duration<u32, 1, 1_000>), FugitDuration32Nanos(Duration<u32, 1, 1_000_000>), FugitInstant32Hours(Instant<u32, 3_600, 1>), FugitInstant32Minutes(Instant<u32, 60, 1>), FugitInstant32Seconds(Instant<u32, 1, 1>), FugitInstant32Millis(Instant<u32, 1, 1_000>), FugitInstant32Nanos(Instant<u32, 1, 1_000_000>), R32(Ratio<i32>), ArrayString7(ArrayString<U7>), TTime(Time), FugitDuration64Hours(Duration<u64, 3_600, 1>), FugitDuration64Minutes(Duration<u64, 60, 1>), FugitDuration64Seconds(Duration<u64, 1, 1>), FugitDuration64Millis(Duration<u64, 1, 1_000>), FugitDuration64Nanos(Duration<u64, 1, 1_000_000>), FugitInstant64Hours(Instant<u64, 3_600, 1>), FugitInstant64Minutes(Instant<u64, 60, 1>), FugitInstant64Seconds(Instant<u64, 1, 1>), FugitInstant64Millis(Instant<u64, 1, 1_000>), FugitInstant64Nanos(Instant<u64, 1, 1_000_000>), R64(Ratio<i64>), Decimal(Decimal), ArrayString15(ArrayString<U15>), TDuration(Duration), TDateTime(PrimitiveDateTime), TOffsetDateTime(OffsetDateTime), F128(TwoFloat), Instant(Instant), SystemTime(SystemTime), TInstant(Instant),
}
Expand description

128-bit/16-Byte data Unit (extendable) (Copy)

See also:

Variants§

§

None

Represents the absence of data.

§

With(C)

A custom data cell extension.

§

U8(u8)

8-bit unsigned integer

§

I8(i8)

8-bit signed integer

§

ByteArray1([u8; 1])

1-Byte array of bytes

§

Bool(bool)

Boolean value

§

BitArray8(BitArray<(), 8, 1>)

8-bit Array of bits

§

U16(u16)

16-bit unsigned integer

§

I16(i16)

16-bit signed integer

§

ByteArray2([u8; 2])

2-Byte array of bytes

§

BitArray16(BitArray<(), 16, 2>)

16-bit Array of bits

§

U32(u32)

32-bit unsigned integer

§

I32(i32)

32-bit signed integer

§

F32(f32)

32-bit floating-point number

§

ByteArray4([u8; 4])

4-Byte array of bytes

§

BitArray32(BitArray<(), 32, 4>)

32-bit Array of bits

§

Char(char)

4-Byte char

§

U64(u64)

64-bit unsigned integer

§

I64(i64)

64-bit signed integer

§

F64(f64)

64-bit floating-point number

§

ByteArray8([u8; 8])

8-Byte array of bytes

§

BitArray64(BitArray<(), 64, 8>)

64-bit Array of bits

§

U128(u128)

128-bit unsigned integer

§

I128(i128)

128-bit signed integer

§

ByteArray16([u8; 16])

16-Byte array of bytes

§

BitArray128(BitArray<(), 128, 16>)

128-bit Array of bits

§

Duration(Duration)

128-bit Duration

§

Usize(usize)

64-bit usize

§

Isize(isize)

64-bit isize

§

F16(f16)

Available on crate feature half only.

16-bit half’s binary16 floating-point number

§

BF16(bf16)

Available on crate feature half only.

16-bit half’s bfloat16 floating-point number

§

ArrayString1(ArrayString<U1>)

Available on crate feature arraystring only.

2-Byte arraystring’s ArrayString of len()=1

§

ArrayString3(ArrayString<U3>)

Available on crate feature arraystring only.

4-Byte arraystring’s ArrayString of len()=3

§

TDate(Date)

Available on crate feature time only.

32-bit time’s Date

§

TUtcOffset(UtcOffset)

Available on crate feature time only.

32-bit time’s UtcOffset

§

FugitDuration32Hours(Duration<u32, 3_600, 1>)

Available on crate feature fugit only.

32-bit fugit’s Duration in hours

§

FugitDuration32Minutes(Duration<u32, 60, 1>)

Available on crate feature fugit only.

32-bit fugit’s Duration in minutes

§

FugitDuration32Seconds(Duration<u32, 1, 1>)

Available on crate feature fugit only.

32-bit fugit’s Duration in seconds

§

FugitDuration32Millis(Duration<u32, 1, 1_000>)

Available on crate feature fugit only.

32-bit fugit’s Duration in milliseconds

§

FugitDuration32Nanos(Duration<u32, 1, 1_000_000>)

Available on crate feature fugit only.

32-bit fugit’s Duration in nanoseconds

§

FugitInstant32Hours(Instant<u32, 3_600, 1>)

Available on crate feature fugit only.

32-bit fugit’s Instant in hours

§

FugitInstant32Minutes(Instant<u32, 60, 1>)

Available on crate feature fugit only.

32-bit fugit’s Instant in minutes

§

FugitInstant32Seconds(Instant<u32, 1, 1>)

Available on crate feature fugit only.

32-bit fugit’s Instant in seconds

§

FugitInstant32Millis(Instant<u32, 1, 1_000>)

Available on crate feature fugit only.

32-bit fugit’s Instant in milliseconds

§

FugitInstant32Nanos(Instant<u32, 1, 1_000_000>)

Available on crate feature fugit only.

32-bit fugit’s Instant in nanoseconds

§

R32(Ratio<i32>)

Available on crate feature num-rational only.

32-bit num_rational’s Ratio rational number

§

ArrayString7(ArrayString<U7>)

Available on crate feature arraystring only.

8-Byte arraystring’s ArrayString of len()=7

§

TTime(Time)

Available on crate feature time only.

64-bit time’s Time

§

FugitDuration64Hours(Duration<u64, 3_600, 1>)

Available on crate feature fugit only.

64-bit fugit’s Duration in hours

§

FugitDuration64Minutes(Duration<u64, 60, 1>)

Available on crate feature fugit only.

64-bit fugit’s Duration in minutes

§

FugitDuration64Seconds(Duration<u64, 1, 1>)

Available on crate feature fugit only.

64-bit fugit’s Duration in seconds

§

FugitDuration64Millis(Duration<u64, 1, 1_000>)

Available on crate feature fugit only.

64-bit fugit’s Duration in milliseconds

§

FugitDuration64Nanos(Duration<u64, 1, 1_000_000>)

Available on crate feature fugit only.

64-bit fugit’s Duration in nanoseconds

§

FugitInstant64Hours(Instant<u64, 3_600, 1>)

Available on crate feature fugit only.

64-bit fugit’s Instant in hours

§

FugitInstant64Minutes(Instant<u64, 60, 1>)

Available on crate feature fugit only.

64-bit fugit’s Instant in minutes

§

FugitInstant64Seconds(Instant<u64, 1, 1>)

Available on crate feature fugit only.

64-bit fugit’s Instant in seconds

§

FugitInstant64Millis(Instant<u64, 1, 1_000>)

Available on crate feature fugit only.

64-bit fugit’s Instant in milliseconds

§

FugitInstant64Nanos(Instant<u64, 1, 1_000_000>)

Available on crate feature fugit only.

64-bit fugit’s Instant in nanoseconds

§

R64(Ratio<i64>)

Available on crate feature num-rational only.

64-bit num_rational’s Ratio rational number

§

Decimal(Decimal)

Available on crate feature rust_decimal only.

16-Byte rust_decimal Decimal number

§

ArrayString15(ArrayString<U15>)

Available on crate feature arraystring only.

16-Byte arraystring’s ArrayString of len()=15

§

TDuration(Duration)

Available on crate feature time only.

128-bit time’s Duration

§

TDateTime(PrimitiveDateTime)

Available on crate feature time only.

128-bit time’s PrimitiveDateTime

§

TOffsetDateTime(OffsetDateTime)

Available on crate feature time only.

128-bit time’s OffsetDateTime

§

F128(TwoFloat)

Available on crate features std and twofloat only.

128-bit floating point number

§

Instant(Instant)

Available on crate feature std only.

128-bit Instant

§

SystemTime(SystemTime)

Available on crate feature std only.

128-bit SystemTime

§

TInstant(Instant)

Available on crate features std and time only.

128-bit time’s Instant`

Trait Implementations§

Source§

impl<C: Clone + DataUnitCopy> Clone for DataUnit128bitCopyWith<C>

Source§

fn clone(&self) -> DataUnit128bitCopyWith<C>

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<C: DataUnitCopy> DataUnit for DataUnit128bitCopyWith<C>

Source§

fn is_copy(&self) -> bool

Whether the data type in the current variant is Copy.
Source§

impl<C: Debug + DataUnitCopy> Debug for DataUnit128bitCopyWith<C>

Source§

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

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

impl<C: DataUnitCopy> From<[u8; 1]> for DataUnit128bitCopyWith<C>

Source§

fn from(v: [u8; 1]) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<[u8; 16]> for DataUnit128bitCopyWith<C>

Source§

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

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<[u8; 2]> for DataUnit128bitCopyWith<C>

Source§

fn from(v: [u8; 2]) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<[u8; 4]> for DataUnit128bitCopyWith<C>

Source§

fn from(v: [u8; 4]) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<[u8; 8]> for DataUnit128bitCopyWith<C>

Source§

fn from(v: [u8; 8]) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<ArrayString<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: ArrayString<U15>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<ArrayString<UInt<UInt<UInt<UTerm, B1>, B1>, B1>>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: ArrayString<U7>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<ArrayString<UInt<UInt<UTerm, B1>, B1>>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: ArrayString<U3>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<ArrayString<UInt<UTerm, B1>>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: ArrayString<U1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<BitArray<(), 128, 16>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: BitArray<(), 128, 16>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<BitArray<(), 16, 2>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: BitArray<(), 16, 2>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<BitArray<(), 32, 4>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: BitArray<(), 32, 4>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<BitArray<(), 64, 8>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: BitArray<(), 64, 8>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<BitArray<(), 8, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: BitArray<(), 8, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<DataUnit128bitCopyWith<C>> for DataRaw128bitCopy

Available on crate feature unsafe_unit only.
Source§

fn from(cell: DataUnit128bitCopyWith<C>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Date> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Date) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Decimal> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Decimal) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u32, 1, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u32, 1, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u32, 1, 1000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u32, 1, 1_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u32, 1, 1000000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u32, 1, 1_000_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u32, 3600, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u32, 3_600, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u32, 60, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u32, 60, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u64, 1, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u64, 1, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u64, 1, 1000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u64, 1, 1_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u64, 1, 1000000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u64, 1, 1_000_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u64, 3600, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u64, 3_600, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration<u64, 60, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration<u64, 60, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Duration> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Duration) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u32, 1, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u32, 1, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u32, 1, 1000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u32, 1, 1_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u32, 1, 1000000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u32, 1, 1_000_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u32, 3600, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u32, 3_600, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u32, 60, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u32, 60, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u64, 1, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u64, 1, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u64, 1, 1000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u64, 1, 1_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u64, 1, 1000000>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u64, 1, 1_000_000>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u64, 3600, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u64, 3_600, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant<u64, 60, 1>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant<u64, 60, 1>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Instant> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Instant) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<OffsetDateTime> for DataUnit128bitCopyWith<C>

Source§

fn from(v: OffsetDateTime) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<PrimitiveDateTime> for DataUnit128bitCopyWith<C>

Source§

fn from(v: PrimitiveDateTime) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Ratio<i32>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Ratio<i32>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Ratio<i64>> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Ratio<i64>) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<SystemTime> for DataUnit128bitCopyWith<C>

Source§

fn from(v: SystemTime) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<Time> for DataUnit128bitCopyWith<C>

Source§

fn from(v: Time) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<TwoFloat> for DataUnit128bitCopyWith<C>

Source§

fn from(v: TwoFloat) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<UtcOffset> for DataUnit128bitCopyWith<C>

Source§

fn from(v: UtcOffset) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<bf16> for DataUnit128bitCopyWith<C>

Source§

fn from(v: bf16) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<bool> for DataUnit128bitCopyWith<C>

Source§

fn from(v: bool) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<char> for DataUnit128bitCopyWith<C>

Source§

fn from(v: char) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<f16> for DataUnit128bitCopyWith<C>

Source§

fn from(v: f16) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<f32> for DataUnit128bitCopyWith<C>

Source§

fn from(v: f32) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<f64> for DataUnit128bitCopyWith<C>

Source§

fn from(v: f64) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<i128> for DataUnit128bitCopyWith<C>

Source§

fn from(v: i128) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<i16> for DataUnit128bitCopyWith<C>

Source§

fn from(v: i16) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<i32> for DataUnit128bitCopyWith<C>

Source§

fn from(v: i32) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<i64> for DataUnit128bitCopyWith<C>

Source§

fn from(v: i64) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<i8> for DataUnit128bitCopyWith<C>

Source§

fn from(v: i8) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<u128> for DataUnit128bitCopyWith<C>

Source§

fn from(v: u128) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<u16> for DataUnit128bitCopyWith<C>

Source§

fn from(v: u16) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<u32> for DataUnit128bitCopyWith<C>

Source§

fn from(v: u32) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<u64> for DataUnit128bitCopyWith<C>

Source§

fn from(v: u64) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> From<u8> for DataUnit128bitCopyWith<C>

Source§

fn from(v: u8) -> Self

Converts to this type from the input type.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for [u8; 1]

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for [u8; 16]

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for [u8; 2]

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for [u8; 4]

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for [u8; 8]

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for BitArray<(), 128, 16>

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for BitArray<(), 16, 2>

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for BitArray<(), 32, 4>

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for BitArray<(), 64, 8>

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for BitArray<(), 8, 1>

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for Duration

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for bool

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for char

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for f32

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for f64

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for i128

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for i16

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for i32

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for i64

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for i8

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for u128

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for u16

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for u32

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for u64

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: DataUnitCopy> TryFrom<DataUnit128bitCopyWith<C>> for u8

Source§

type Error = ()

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

fn try_from(c: DataUnit128bitCopyWith<C>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<C: Copy + DataUnitCopy> Copy for DataUnit128bitCopyWith<C>

Source§

impl<C: DataUnitCopy> DataUnitCopy for DataUnit128bitCopyWith<C>

Auto Trait Implementations§

§

impl<C> Freeze for DataUnit128bitCopyWith<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for DataUnit128bitCopyWith<C>
where C: RefUnwindSafe,

§

impl<C> Send for DataUnit128bitCopyWith<C>
where C: Send,

§

impl<C> Sync for DataUnit128bitCopyWith<C>
where C: Sync,

§

impl<C> Unpin for DataUnit128bitCopyWith<C>
where C: Unpin,

§

impl<C> UnwindSafe for DataUnit128bitCopyWith<C>
where C: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Also for T

Source§

fn also_mut<F>(self, f: F) -> Self
where F: FnOnce(&mut Self),

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
Source§

fn also_ref<F>(self, f: F) -> Self
where F: FnOnce(&Self),

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
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, Res> Apply<Res> for T
where T: ?Sized,

Source§

fn apply<F>(self, f: F) -> Res
where F: FnOnce(Self) -> Res, Self: Sized,

Apply a function which takes the parameter by value.
Source§

fn apply_ref<F>(&self, f: F) -> Res
where F: FnOnce(&Self) -> Res,

Apply a function which takes the parameter by shared reference.
Source§

fn apply_mut<F>(&mut self, f: F) -> Res
where F: FnOnce(&mut Self) -> Res,

Apply a function which takes the parameter by exclusive reference.
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
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<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
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> DataSize for T

Source§

const BYTES: usize = _

The size of this type in bytes, rounded up if it’s not a multiple of 8.
Source§

const UBITS: usize = _

The pointer size in bits for the current platform.
Source§

const UBYTES: usize = 8usize

The pointer size in bytes for the current platform.
Source§

fn pointer_ratio(&self) -> (usize, usize)

Returns the size ratio between UBYTES and BYTES. Read more
Source§

fn stack_byte_size(&self) -> usize

Returns the size in bytes of this type, in the stack. 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> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
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, 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<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> BitSizeAtLeast<0> for T