Struct cassandra_cpp::Uuid
source · pub struct Uuid(_);Expand description
Version 1 (time-based) or version 4 (random) UUID.
Implementations
sourceimpl Uuid
impl Uuid
sourcepub fn min_from_time(&mut self, time: u64)
pub fn min_from_time(&mut self, time: u64)
Generates a V1 (time) UUID for the specified time.
sourcepub fn max_from_time(&mut self, time: u64)
pub fn max_from_time(&mut self, time: u64)
Sets the UUID to the minimum V1 (time) value for the specified tim
Trait Implementations
sourceimpl AsRustType<Uuid> for Row<'_>
impl AsRustType<Uuid> for Row<'_>
sourceimpl BindRustType<Uuid> for Statement
impl BindRustType<Uuid> for Statement
sourceimpl Ord for Uuid
impl Ord for Uuid
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Uuid> for Uuid
impl PartialOrd<Uuid> for Uuid
sourcefn partial_cmp(&self, other: &Uuid) -> Option<Ordering>
fn partial_cmp(&self, other: &Uuid) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Uuid
impl Eq for Uuid
Auto Trait Implementations
impl RefUnwindSafe for Uuid
impl Send for Uuid
impl Sync for Uuid
impl Unpin for Uuid
impl UnwindSafe for Uuid
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more