pub struct MongodbChangeStreamPosition {
pub start_time: Option<DateTime<Utc>>,
}Expand description
MongoDB change stream position
This type is not used in any activity, and only used as part of another schema.
Fields§
§start_time: Option<DateTime<Utc>>Required. The timestamp to start change stream from.
Trait Implementations§
Source§impl Clone for MongodbChangeStreamPosition
impl Clone for MongodbChangeStreamPosition
Source§fn clone(&self) -> MongodbChangeStreamPosition
fn clone(&self) -> MongodbChangeStreamPosition
Returns a duplicate of the value. Read more
1.0.0 · 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 MongodbChangeStreamPosition
impl Debug for MongodbChangeStreamPosition
Source§impl Default for MongodbChangeStreamPosition
impl Default for MongodbChangeStreamPosition
Source§fn default() -> MongodbChangeStreamPosition
fn default() -> MongodbChangeStreamPosition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MongodbChangeStreamPosition
impl<'de> Deserialize<'de> for MongodbChangeStreamPosition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for MongodbChangeStreamPosition
Auto Trait Implementations§
impl Freeze for MongodbChangeStreamPosition
impl RefUnwindSafe for MongodbChangeStreamPosition
impl Send for MongodbChangeStreamPosition
impl Sync for MongodbChangeStreamPosition
impl Unpin for MongodbChangeStreamPosition
impl UnwindSafe for MongodbChangeStreamPosition
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