pub struct AppendBatchRequest {
pub stream_id: BucketStreamId,
pub content_type: String,
pub payloads: Vec<Bytes>,
pub producer: Option<ProducerRequest>,
pub now_ms: u64,
}Fields§
§stream_id: BucketStreamId§content_type: String§payloads: Vec<Bytes>§producer: Option<ProducerRequest>§now_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for AppendBatchRequest
impl Clone for AppendBatchRequest
Source§fn clone(&self) -> AppendBatchRequest
fn clone(&self) -> AppendBatchRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppendBatchRequest
impl Debug for AppendBatchRequest
Source§impl From<&AppendBatchRequest> for GroupWriteCommand
impl From<&AppendBatchRequest> for GroupWriteCommand
Source§fn from(request: &AppendBatchRequest) -> Self
fn from(request: &AppendBatchRequest) -> Self
Converts to this type from the input type.
Source§impl From<AppendBatchRequest> for GroupWriteCommand
impl From<AppendBatchRequest> for GroupWriteCommand
Source§fn from(request: AppendBatchRequest) -> Self
fn from(request: AppendBatchRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AppendBatchRequest
impl PartialEq for AppendBatchRequest
Source§fn eq(&self, other: &AppendBatchRequest) -> bool
fn eq(&self, other: &AppendBatchRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AppendBatchRequest
impl StructuralPartialEq for AppendBatchRequest
Auto Trait Implementations§
impl Freeze for AppendBatchRequest
impl RefUnwindSafe for AppendBatchRequest
impl Send for AppendBatchRequest
impl Sync for AppendBatchRequest
impl Unpin for AppendBatchRequest
impl UnsafeUnpin for AppendBatchRequest
impl UnwindSafe for AppendBatchRequest
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