pub struct RemoveRecordBuilder { /* private fields */ }
Expand description
Builder for a remove record request.
Implementations§
Source§impl RemoveRecordBuilder
impl RemoveRecordBuilder
Sourcepub fn timestamp_us(self, timestamp: u64) -> Self
pub fn timestamp_us(self, timestamp: u64) -> Self
Set the timestamp of the record to remove as a unix timestamp in microseconds.
Sourcepub fn timestamp(self, timestamp: SystemTime) -> Self
pub fn timestamp(self, timestamp: SystemTime) -> Self
Set the timestamp of the record to remove.
Auto Trait Implementations§
impl Freeze for RemoveRecordBuilder
impl !RefUnwindSafe for RemoveRecordBuilder
impl Send for RemoveRecordBuilder
impl Sync for RemoveRecordBuilder
impl Unpin for RemoveRecordBuilder
impl !UnwindSafe for RemoveRecordBuilder
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