[][src]Struct avocado::prelude::ObjectId

pub struct ObjectId { /* fields omitted */ }

A wrapper around raw 12-byte ObjectId representations.

Methods

impl ObjectId
[src]

pub fn new() -> Result<ObjectId, Error>
[src]

Generates a new ObjectID, represented in bytes. See the docs for more information.

pub fn with_bytes(bytes: [u8; 12]) -> ObjectId
[src]

Constructs a new ObjectId wrapper around the raw byte representation.

pub fn with_string(s: &str) -> Result<ObjectId, Error>
[src]

Creates an ObjectID using a 12-byte (24-char) hexadecimal string.

pub fn with_timestamp(time: u32) -> ObjectId
[src]

Creates a dummy ObjectId with a specific generation time. This method should only be used to do range queries on a field containing ObjectId instances.

pub fn bytes(&self) -> [u8; 12]
[src]

Returns the raw byte representation of an ObjectId.

pub fn timestamp(&self) -> u32
[src]

Retrieves the timestamp (seconds since epoch) from an ObjectId.

pub fn machine_id(&self) -> u32
[src]

Retrieves the machine id associated with an ObjectId.

pub fn process_id(&self) -> u16
[src]

Retrieves the process id associated with an ObjectId.

pub fn counter(&self) -> u32
[src]

Retrieves the increment counter from an ObjectId.

pub fn to_hex(&self) -> String
[src]

Convert the objectId to hex representation.

Trait Implementations

impl Clone for ObjectId
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ObjectId
[src]

impl Display for ObjectId
[src]

impl<'de> Deserialize<'de> for ObjectId
[src]

impl Serialize for ObjectId
[src]

impl From<ObjectId> for Bson
[src]

impl PartialOrd<ObjectId> for ObjectId
[src]

impl Hash for ObjectId
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for ObjectId
[src]

impl Ord for ObjectId
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialEq<ObjectId> for ObjectId
[src]

impl BsonSchema for ObjectId
[src]

Auto Trait Implementations

impl Send for ObjectId

impl Sync for ObjectId

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

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

impl<T> Same for T

type Output = T

Should always be Self