[−][src]Struct bson::oid::ObjectId
A wrapper around raw 12-byte ObjectId representations.
Methods
impl ObjectId
[src]
pub fn new() -> Result<ObjectId>
[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>
[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 PartialEq<ObjectId> for ObjectId
[src]
impl Ord for ObjectId
[src]
fn cmp(&self, other: &ObjectId) -> Ordering
[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 Clone for ObjectId
[src]
fn clone(&self) -> ObjectId
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl From<ObjectId> for Bson
[src]
impl Eq for ObjectId
[src]
impl PartialOrd<ObjectId> for ObjectId
[src]
fn partial_cmp(&self, other: &ObjectId) -> Option<Ordering>
[src]
fn lt(&self, other: &ObjectId) -> bool
[src]
fn le(&self, other: &ObjectId) -> bool
[src]
fn gt(&self, other: &ObjectId) -> bool
[src]
fn ge(&self, other: &ObjectId) -> bool
[src]
impl Debug for ObjectId
[src]
impl Display for ObjectId
[src]
impl Hash for ObjectId
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Serialize for ObjectId
[src]
impl<'de> Deserialize<'de> for ObjectId
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,