pub struct AuditRecordId(pub Ulid);Expand description
Audit record identifier.
Wire format: aud _<26-char Crockford ULID>.
Tuple Fields§
§0: UlidImplementations§
Source§impl AuditRecordId
impl AuditRecordId
Trait Implementations§
Source§impl Clone for AuditRecordId
impl Clone for AuditRecordId
Source§fn clone(&self) -> AuditRecordId
fn clone(&self) -> AuditRecordId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuditRecordId
impl Debug for AuditRecordId
Source§impl Default for AuditRecordId
impl Default for AuditRecordId
Source§impl<'de> Deserialize<'de> for AuditRecordId
impl<'de> Deserialize<'de> for AuditRecordId
Source§fn deserialize<D: Deserializer<'de>>(de: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(de: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AuditRecordId
impl Display for AuditRecordId
Source§impl FromStr for AuditRecordId
impl FromStr for AuditRecordId
Source§impl Hash for AuditRecordId
impl Hash for AuditRecordId
Source§impl JsonSchema for AuditRecordId
impl JsonSchema for AuditRecordId
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(_: &mut SchemaGenerator) -> Schema
fn json_schema(_: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl Ord for AuditRecordId
impl Ord for AuditRecordId
Source§fn cmp(&self, other: &AuditRecordId) -> Ordering
fn cmp(&self, other: &AuditRecordId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AuditRecordId
impl PartialEq for AuditRecordId
Source§fn eq(&self, other: &AuditRecordId) -> bool
fn eq(&self, other: &AuditRecordId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AuditRecordId
impl PartialOrd for AuditRecordId
Source§impl Serialize for AuditRecordId
impl Serialize for AuditRecordId
impl Copy for AuditRecordId
impl Eq for AuditRecordId
impl StructuralPartialEq for AuditRecordId
Auto Trait Implementations§
impl Freeze for AuditRecordId
impl RefUnwindSafe for AuditRecordId
impl Send for AuditRecordId
impl Sync for AuditRecordId
impl Unpin for AuditRecordId
impl UnsafeUnpin for AuditRecordId
impl UnwindSafe for AuditRecordId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more