Struct EntityIdBuilder

Source
pub struct EntityIdBuilder<T: Prefix, I: Identifier> { /* private fields */ }
Expand description

Builder for creating EntityIds

Implementations§

Source§

impl<T: Prefix, I: Identifier> EntityIdBuilder<T, I>

Source

pub fn new() -> Self

Create a new builder

Source

pub fn with_identifier(self, id: I) -> Self

Set the identifier

Source

pub fn build(self) -> EntityId<T, I>

Build the EntityId

Source§

impl<T: Prefix> EntityIdBuilder<T, UuidIdentifier>

Source

pub fn with_uuid(self, uuid: Uuid) -> Self

Set a specific UUID

Source

pub fn with_uuid_v4(self) -> Self

Set a UUID v4 (random)

Source

pub fn with_uuid_v5(self, namespace: &Uuid, name: &str) -> Self

Set a UUID v5 (name-based)

Source§

impl<T: Prefix> EntityIdBuilder<T, UlidIdentifier>

Source

pub fn with_ulid(self, ulid: Ulid) -> Self

Set a specific ULID

Source

pub fn with_timestamp(self, timestamp_ms: u64) -> Self

Set a ULID with a specific timestamp

Source

pub fn with_monotonic_from( self, previous: Option<&EntityId<T, UlidIdentifier>>, ) -> Self

Set a monotonic ULID based on a previous one

Trait Implementations§

Source§

impl<T: Prefix, I: Identifier> Default for EntityIdBuilder<T, I>

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<T, I> Freeze for EntityIdBuilder<T, I>
where I: Freeze,

§

impl<T, I> RefUnwindSafe for EntityIdBuilder<T, I>

§

impl<T, I> Send for EntityIdBuilder<T, I>
where I: Send, T: Send,

§

impl<T, I> Sync for EntityIdBuilder<T, I>
where I: Sync, T: Sync,

§

impl<T, I> Unpin for EntityIdBuilder<T, I>
where I: Unpin, T: Unpin,

§

impl<T, I> UnwindSafe for EntityIdBuilder<T, I>
where I: UnwindSafe, T: UnwindSafe,

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> 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, 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