Skip to main content

I64

Struct I64 

Source
pub struct I64(/* private fields */);
Expand description

Unaligned i64 type that can be embedded in bytemuck Pod types.

Implementations§

Source§

impl I64

Source

pub const fn from_primitive(n: i64) -> Self

Source

pub fn checked_add(self, rhs: impl Into<i64>) -> Option<Self>

Source

pub fn checked_div(self, rhs: impl Into<i64>) -> Option<Self>

Source

pub fn checked_mul(self, rhs: impl Into<i64>) -> Option<Self>

Source

pub fn checked_rem(self, rhs: impl Into<i64>) -> Option<Self>

Source

pub fn checked_sub(self, rhs: impl Into<i64>) -> Option<Self>

Source

pub fn saturating_add(self, rhs: impl Into<i64>) -> Self

Source

pub fn saturating_div(self, rhs: impl Into<i64>) -> Self

Source

pub fn saturating_mul(self, rhs: impl Into<i64>) -> Self

Source

pub fn saturating_sub(self, rhs: impl Into<i64>) -> Self

Trait Implementations§

Source§

impl Add<i64> for I64

Source§

type Output = I64

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add for I64

Source§

type Output = I64

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<i64> for I64

Source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
Source§

impl AddAssign for I64

Source§

fn add_assign(&mut self, rhs: I64)

Performs the += operation. Read more
Source§

impl Clone for I64

Source§

fn clone(&self) -> I64

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for I64

Source§

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

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

impl Default for I64

Source§

fn default() -> I64

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

impl<'de> Deserialize<'de> for I64

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Div<i64> for I64

Source§

type Output = I64

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div for I64

Source§

type Output = I64

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl DivAssign<i64> for I64

Source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
Source§

impl DivAssign for I64

Source§

fn div_assign(&mut self, rhs: I64)

Performs the /= operation. Read more
Source§

impl From<I64> for i64

Source§

fn from(unaligned: I64) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for I64

Source§

fn from(n: i64) -> Self

Converts to this type from the input type.
Source§

impl Mul<i64> for I64

Source§

type Output = I64

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul for I64

Source§

type Output = I64

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl MulAssign<i64> for I64

Source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
Source§

impl MulAssign for I64

Source§

fn mul_assign(&mut self, rhs: I64)

Performs the *= operation. Read more
Source§

impl PartialEq for I64

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 I64

Source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 Rem<i64> for I64

Source§

type Output = I64

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem for I64

Source§

type Output = I64

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl RemAssign<i64> for I64

Source§

fn rem_assign(&mut self, rhs: i64)

Performs the %= operation. Read more
Source§

impl RemAssign for I64

Source§

fn rem_assign(&mut self, rhs: I64)

Performs the %= operation. Read more
Source§

impl<'de, WincodeConfig: Config> SchemaRead<'de, WincodeConfig> for I64

Source§

const TYPE_META: TypeMeta

Metadata about the type’s serialization. Read more
Source§

type Dst = I64

Source§

fn read( reader: impl Reader<'de>, dst: &mut MaybeUninit<Self::Dst>, ) -> ReadResult<()>

Read into dst from reader. Read more
Source§

fn get(reader: impl Reader<'de>) -> Result<Self::Dst, ReadError>

Read Self::Dst from reader into a new Self::Dst.
Source§

impl<WincodeConfig: Config> SchemaWrite<WincodeConfig> for I64

Source§

const TYPE_META: TypeMeta

Metadata about the type’s serialization. Read more
Source§

type Src = I64

Source§

fn size_of(src: &Self::Src) -> WriteResult<usize>

Get the serialized size of Self::Src. Read more
Source§

fn write(writer: impl Writer, src: &Self::Src) -> WriteResult<()>

Write Self::Src to writer.
Source§

impl Serialize for I64

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Sub<i64> for I64

Source§

type Output = I64

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub for I64

Source§

type Output = I64

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign<i64> for I64

Source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
Source§

impl SubAssign for I64

Source§

fn sub_assign(&mut self, rhs: I64)

Performs the -= operation. Read more
Source§

impl<WincodeConfig: Config> ZeroCopy<WincodeConfig> for I64
where for<'_wincode_internal> [u8; 8]: ZeroCopy<WincodeConfig>, for<'_wincode_internal> Assert<{ _ }>: IsTrue,

Source§

fn from_bytes<'de>(bytes: &'de [u8], config: C) -> Result<&'de Self, ReadError>
where Self: Sized + SchemaRead<'de, C, Dst = Self>,

Like crate::ZeroCopy::from_bytes, but allows the caller to provide a custom configuration.
Source§

fn from_bytes_mut<'de>( bytes: &'de mut [u8], config: C, ) -> Result<&'de mut Self, ReadError>
where Self: Sized + SchemaRead<'de, C, Dst = Self>,

Like crate::ZeroCopy::from_bytes_mut, but allows the caller to provide a custom configuration.
Source§

impl Zeroable for I64

Source§

fn zeroed() -> Self

Source§

impl Copy for I64

Source§

impl Pod for I64

Source§

impl StructuralPartialEq for I64

Auto Trait Implementations§

§

impl Freeze for I64

§

impl RefUnwindSafe for I64

§

impl Send for I64

§

impl Sync for I64

§

impl Unpin for I64

§

impl UnsafeUnpin for I64

§

impl UnwindSafe for I64

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> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
Source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
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<'de, T> Deserialize<'de> for T
where T: SchemaRead<'de, Configuration>,

Source§

fn deserialize(src: &'de [u8]) -> Result<Self::Dst, ReadError>

Deserialize the input src bytes into a new Self::Dst.
Source§

fn deserialize_into( src: &'de [u8], dst: &mut MaybeUninit<Self::Dst>, ) -> Result<(), ReadError>

Deserialize the input src bytes into dst.
Source§

impl<'de, T, C> Deserialize<'de, C> for T
where C: Config, T: SchemaRead<'de, C>,

Source§

fn deserialize(src: &'de [u8], config: C) -> Result<Self::Dst, ReadError>

Deserialize the input bytes into a new Self::Dst.
Source§

fn deserialize_into( src: &'de [u8], dst: &mut MaybeUninit<Self::Dst>, config: C, ) -> Result<(), ReadError>

Deserialize the input bytes into dst.
Source§

impl<T, C> DeserializeOwned<C> for T
where C: Config, T: SchemaReadOwned<C>,

Source§

fn deserialize_from<'de>(src: impl Reader<'de>) -> Result<Self::Dst, ReadError>

Deserialize from the given Reader into a new Self::Dst.
Source§

fn deserialize_from_into<'de>( src: impl Reader<'de>, dst: &mut MaybeUninit<Self::Dst>, ) -> Result<(), ReadError>

Deserialize from the given Reader into dst.
Source§

impl<T> DeserializeOwned for T

Source§

fn deserialize_from<'de>(src: impl Reader<'de>) -> Result<Self::Dst, ReadError>

Deserialize from the given Reader into a new Self::Dst.
Source§

fn deserialize_from_into<'de>( src: impl Reader<'de>, dst: &mut MaybeUninit<Self::Dst>, ) -> Result<(), ReadError>

Deserialize from the given Reader into dst.
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, C> Serialize<C> for T
where C: Config, T: SchemaWrite<C> + ?Sized,

Source§

fn serialize_into( dst: impl Writer, src: &Self::Src, config: C, ) -> Result<(), WriteError>

Serialize a serializable type into the given Writer.
Source§

fn serialized_size(src: &Self::Src, config: C) -> Result<u64, WriteError>

Get the size in bytes of the type when serialized.
Source§

impl<T> Serialize for T

Source§

fn serialize_into(dst: impl Writer, src: &Self::Src) -> Result<(), WriteError>

Serialize a serializable type into the given byte buffer.
Source§

fn serialized_size(src: &Self::Src) -> Result<u64, WriteError>

Get the size in bytes of the type when serialized.
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> ZeroCopy for T

Source§

fn from_bytes<'de>(bytes: &'de [u8]) -> Result<&'de Self, ReadError>
where Self: Sized + SchemaRead<'de, Configuration, Dst = Self>,

Get a reference to a type from the given bytes. Read more
Source§

fn from_bytes_mut<'de>(bytes: &'de mut [u8]) -> Result<&'de mut Self, ReadError>
where Self: Sized + SchemaRead<'de, Configuration, Dst = Self>,

Get a mutable reference to a type from the given bytes. Read more
Source§

impl<T> AnyBitPattern for T
where T: Pod,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> NoUninit for T
where T: Pod,

Source§

impl<T, C> SchemaReadOwned<C> for T
where C: ConfigCore, T: for<'de> SchemaRead<'de, C>,