Identity

Struct Identity 

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

An Identity for something interacting with the database.

An Identity is a 256-bit unsigned integer. These are encoded in various ways.

  • In JSON, an Identity is represented as a hexadecimal number wrapped in a string, "0x[64 hex characters]".
  • In BSATN, an Identity is represented as a LITTLE-ENDIAN number 32 bytes long.
  • In memory, an Identity is stored as a 256-bit number with the endianness of the host system.

If you are manually converting a hexadecimal string to a byte array like so:

"0xb0b1b2..."
->
[0xb0, 0xb1, 0xb2, ...]

Make sure you call Identity::from_be_byte_array and NOT Identity::from_byte_array. The standard way of writing hexadecimal numbers follows a big-endian convention, if you index the characters in written text in increasing order from left to right.

Implementations§

Source§

impl Identity

Source

pub const ZERO: Identity

The 0x0 Identity

Source

pub const ONE: Identity

The 0x1 Identity

Source

pub const fn from_byte_array(bytes: [u8; 32]) -> Identity

Create an Identity from a LITTLE-ENDIAN byte array.

If you are parsing an Identity from a string, you probably want from_be_byte_array instead.

Source

pub const fn from_be_byte_array(bytes: [u8; 32]) -> Identity

Create an Identity from a BIG-ENDIAN byte array.

This method is the correct choice if you have converted the bytes of a hexadecimal-formatted Identity to a byte array in the following way:

"0xb0b1b2..."
->
[0xb0, 0xb1, 0xb2, ...]
Source

pub const fn from_u256(__identity__: U256) -> Identity

Converts __identity__: u256 to Identity.

Source

pub const fn to_u256(&self) -> U256

Converts this identity to an u256.

Source

pub fn from_claims(issuer: &str, subject: &str) -> Identity

Derives an identity from a JWT issuer and a subject.

Source

pub fn to_byte_array(&self) -> [u8; 32]

Returns this Identity as a byte array.

Source

pub fn to_be_byte_array(&self) -> [u8; 32]

Convert this Identity to a BIG-ENDIAN byte array.

Source

pub fn to_hex(&self) -> HexString<32>

Convert this Identity to a hexadecimal string.

Source

pub fn abbreviate(&self) -> [u8; 8]

Extract the first 8 bytes of this Identity as if it was stored in BIG-ENDIAN format. (That is, the most significant bytes.)

Source

pub fn to_abbreviated_hex(&self) -> HexString<8>

Extract the first 16 characters of this Identity’s hexadecimal representation.

Source

pub fn from_hex(hex: impl AsRef<[u8]>) -> Result<Identity, FromHexError>

Trait Implementations§

Source§

impl AsPrometheusLabel for Identity

Available on crate feature metrics_impls only.
Source§

impl Clone for Identity

Source§

fn clone(&self) -> Identity

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 Identity

Source§

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

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

impl Default for Identity

Source§

fn default() -> Identity

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

impl<'de> Deserialize<'de> for Identity

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Identity, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given deserializer.
Source§

impl<'de> Deserialize<'de> for Identity

Available on crate feature serde only.
Source§

fn deserialize<D>( deserializer: D, ) -> Result<Identity, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

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

impl Display for Identity

Source§

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

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

impl FilterableValue for &Identity

Source§

impl FilterableValue for Identity

Source§

impl FromHex for Identity

Source§

type Error = FromHexError

Source§

fn from_hex<T>(hex: T) -> Result<Identity, <Identity as FromHex>::Error>
where T: AsRef<[u8]>,

Creates an instance of type Self from the given hex string, or fails with a custom error type. Read more
Source§

impl FromStr for Identity

Source§

type Err = <Identity as FromHex>::Error

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

fn from_str(s: &str) -> Result<Identity, <Identity as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl GroundSpacetimeType for Identity

Source§

fn get_type() -> AlgebraicType

Returns the AlgebraicType representation of Self.
Source§

impl Hash for Identity

Source§

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

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 Ord for Identity

Source§

fn cmp(&self, other: &Identity) -> 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 Identity

Source§

fn eq(&self, other: &Identity) -> 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 Identity

Source§

fn partial_cmp(&self, other: &Identity) -> 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 Serialize for Identity

Source§

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

Serialize self in the data format of S using the provided serializer.
Source§

impl Serialize for Identity

Available on crate feature serde only.
Source§

fn serialize<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

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

impl SpacetimeType for Identity

Source§

fn make_type<S>(_ts: &mut S) -> AlgebraicType

Returns an AlgebraicType representing the type for Self in SATS and in the typing context in typespace. This is used by the automatic type registration system in Rust modules. Read more
Source§

impl Copy for Identity

Source§

impl Eq for Identity

Source§

impl StructuralPartialEq for Identity

Auto Trait Implementations§

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<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

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

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<Col, Arg> IndexScanRangeBoundsTerminator for Arg
where Arg: FilterableValue<Column = Col>,

Source§

const POINT: bool = true

Whether this bound terminator is a point.
Source§

type Arg = Arg

The key type of the bound.
Source§

fn point(&self) -> &Arg

Returns the point bound, assuming POINT == true.
Source§

fn bounds(&self) -> TermBound<&Arg>

Returns the terminal bound for the range scan. This bound can either be a point, as in most cases, or an actual bound.
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Satn for T
where T: Serialize + ?Sized,

Source§

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

Formats the value using the SATN data format into the formatter f.
Source§

fn fmt_psql( &self, f: &mut Formatter<'_>, ty: &PsqlType<'_>, ) -> Result<(), Error>

Formats the value using the postgres SATN(PsqlFormatter { f }, /* PsqlType */) formatter f.
Source§

fn to_satn(&self) -> String

Formats the value using the SATN data format into the returned String.
Source§

fn to_satn_pretty(&self) -> String

Pretty prints the value using the SATN data format into the returned String.
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

Source§

impl<T> Any for T
where T: Any,

Source§

impl<T> CloneAny for T
where T: Any + Clone,

Source§

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

Source§

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

Source§

impl<T> ErasedDestructor for T
where T: 'static,