[][src]Struct ergo_lib::serialization::types::TypeCode

pub struct TypeCode(_);

Implementations

impl TypeCode[src]

pub const LAST_PRIM_TYPECODE: u8[src]

Type code of the last valid prim type so that (1 to LastPrimTypeCode) is a range of valid codes.

pub const MAX_PRIM_TYPECODE: u8[src]

Upper limit of the interval of valid type codes for primitive types

pub const PRIM_RANGE: u8[src]

pub const SBOOLEAN: TypeCode[src]

pub const SBYTE: TypeCode[src]

pub const SSHORT: TypeCode[src]

pub const SINT: TypeCode[src]

pub const SLONG: TypeCode[src]

pub const SBIGINT: TypeCode[src]

pub const SGROUP_ELEMENT: TypeCode[src]

pub const SSIGMAPROP: TypeCode[src]

pub const SANY: TypeCode[src]

pub const COLLECTION_TYPE_CONSTR_ID: u8[src]

pub const COLLECTION_TYPE_CODE: TypeCode[src]

pub const fn value(&self) -> u8[src]

Trait Implementations

impl Add<TypeCode> for TypeCode[src]

type Output = TypeCode

The resulting type after applying the + operator.

impl Clone for TypeCode[src]

impl Debug for TypeCode[src]

impl Eq for TypeCode[src]

impl PartialEq<TypeCode> for TypeCode[src]

impl SigmaSerializable for TypeCode[src]

impl StructuralEq for TypeCode[src]

impl StructuralPartialEq for TypeCode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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