Struct bson::oid::ObjectId
[−]
[src]
pub struct ObjectId { /* fields omitted */ }
A wrapper around raw 12-byte ObjectId representations.
Methods
impl ObjectId
[src]
fn new() -> Result<ObjectId>
Generates a new ObjectID, represented in bytes. See the docs for more information.
fn with_bytes(bytes: [u8; 12]) -> ObjectId
Constructs a new ObjectId wrapper around the raw byte representation.
fn with_string(s: &str) -> Result<ObjectId>
Creates an ObjectID using a 12-byte (24-char) hexadecimal string.
fn with_timestamp(time: u32) -> ObjectId
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.
fn bytes(&self) -> [u8; 12]
Returns the raw byte representation of an ObjectId.
fn timestamp(&self) -> u32
Retrieves the timestamp (seconds since epoch) from an ObjectId.
fn machine_id(&self) -> u32
Retrieves the machine id associated with an ObjectId.
fn process_id(&self) -> u16
Retrieves the process id associated with an ObjectId.
fn counter(&self) -> u32
Retrieves the increment counter from an ObjectId.
Trait Implementations
impl Clone for ObjectId
[src]
fn clone(&self) -> ObjectId
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for ObjectId
[src]
fn eq(&self, __arg_0: &ObjectId) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ObjectId) -> bool
This method tests for !=
.
impl PartialOrd for ObjectId
[src]
fn partial_cmp(&self, __arg_0: &ObjectId) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &ObjectId) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &ObjectId) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &ObjectId) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &ObjectId) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Eq for ObjectId
[src]
impl Ord for ObjectId
[src]
fn cmp(&self, __arg_0: &ObjectId) -> Ordering
This method returns an Ordering
between self
and other
. Read more
impl Hash for ObjectId
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl ToHex for ObjectId
[src]
fn to_hex(&self) -> String
Converts the value of self
to a hex value, returning the owned string. Read more
impl Display for ObjectId
[src]
impl Debug for ObjectId
[src]
impl Decodable for ObjectId
[src]
impl Encodable for ObjectId
[src]
impl Serialize for ObjectId
[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.
impl Deserialize for ObjectId
[src]
fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error> where D: Deserializer
Deserialize this value given this Deserializer
.