pub struct DocumentMutateResponse {
pub request_id: String,
}
Expand description
Base response type for an operation that mutates a document.
JSON schema
{
"description": "Base response type for an operation that mutates a
document.",
"type": "object",
"required": [
"requestId"
],
"properties": {
"requestId": {
"description": "An arbitrary unique identifier for this request.",
"examples": [
"abc-123-def-456"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "DocumentMutateResponse"
}
Fields§
§request_id: String
An arbitrary unique identifier for this request.
Trait Implementations§
Source§impl Clone for DocumentMutateResponse
impl Clone for DocumentMutateResponse
Source§fn clone(&self) -> DocumentMutateResponse
fn clone(&self) -> DocumentMutateResponse
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 DocumentMutateResponse
impl Debug for DocumentMutateResponse
Source§impl<'de> Deserialize<'de> for DocumentMutateResponse
impl<'de> Deserialize<'de> for DocumentMutateResponse
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 From<&DocumentMutateResponse> for DocumentMutateResponse
impl From<&DocumentMutateResponse> for DocumentMutateResponse
Source§fn from(value: &DocumentMutateResponse) -> Self
fn from(value: &DocumentMutateResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DocumentMutateResponse
impl RefUnwindSafe for DocumentMutateResponse
impl Send for DocumentMutateResponse
impl Sync for DocumentMutateResponse
impl Unpin for DocumentMutateResponse
impl UnwindSafe for DocumentMutateResponse
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