pub struct KvStoreBatchResponse {
pub title: Option<String>,
pub _type: Option<String>,
pub errors: Option<Vec<KvStoreBatchResponseErrors>>,
}
Fields§
§title: Option<String>
A descriptor for the response of the entire batch
_type: Option<String>
If an error is present in any of the requests, this field will describe that error
errors: Option<Vec<KvStoreBatchResponseErrors>>
Errors which occurred while handling the items in the request
Implementations§
Source§impl KvStoreBatchResponse
impl KvStoreBatchResponse
pub fn new() -> KvStoreBatchResponse
Trait Implementations§
Source§impl Clone for KvStoreBatchResponse
impl Clone for KvStoreBatchResponse
Source§fn clone(&self) -> KvStoreBatchResponse
fn clone(&self) -> KvStoreBatchResponse
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 KvStoreBatchResponse
impl Debug for KvStoreBatchResponse
Source§impl Default for KvStoreBatchResponse
impl Default for KvStoreBatchResponse
Source§fn default() -> KvStoreBatchResponse
fn default() -> KvStoreBatchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KvStoreBatchResponse
impl<'de> Deserialize<'de> for KvStoreBatchResponse
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
Source§impl PartialEq for KvStoreBatchResponse
impl PartialEq for KvStoreBatchResponse
Source§impl Serialize for KvStoreBatchResponse
impl Serialize for KvStoreBatchResponse
impl StructuralPartialEq for KvStoreBatchResponse
Auto Trait Implementations§
impl Freeze for KvStoreBatchResponse
impl RefUnwindSafe for KvStoreBatchResponse
impl Send for KvStoreBatchResponse
impl Sync for KvStoreBatchResponse
impl Unpin for KvStoreBatchResponse
impl UnwindSafe for KvStoreBatchResponse
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