pub struct WriteResponse {
pub response_header: ResponseHeader,
pub results: Vec<u32>,
}Expand description
WriteResponse.
Fields§
§response_header: ResponseHeaderCommon response header.
results: Vec<u32>One StatusCode per requested write.
Trait Implementations§
Source§impl Clone for WriteResponse
impl Clone for WriteResponse
Source§fn clone(&self) -> WriteResponse
fn clone(&self) -> WriteResponse
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 WriteResponse
impl Debug for WriteResponse
Source§impl PartialEq for WriteResponse
impl PartialEq for WriteResponse
Source§fn eq(&self, other: &WriteResponse) -> bool
fn eq(&self, other: &WriteResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WriteResponse
Auto Trait Implementations§
impl Freeze for WriteResponse
impl RefUnwindSafe for WriteResponse
impl Send for WriteResponse
impl Sync for WriteResponse
impl Unpin for WriteResponse
impl UnsafeUnpin for WriteResponse
impl UnwindSafe for WriteResponse
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