pub struct Ingest {
pub timestamp: DateTime,
pub pipeline: Option<String>,
}Fields§
§timestamp: DateTimeA date and time, either as a string whose format depends on the context (defaulting to ISO_8601) or the number of milliseconds since the epoch. OpenSearch accepts both as an input but will generally output a string. representation.
pipeline: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ingest
impl<'de> Deserialize<'de> for Ingest
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 StructuralPartialEq for Ingest
Auto Trait Implementations§
impl Freeze for Ingest
impl RefUnwindSafe for Ingest
impl Send for Ingest
impl Sync for Ingest
impl Unpin for Ingest
impl UnsafeUnpin for Ingest
impl UnwindSafe for Ingest
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