pub struct AnonUploadBody {
pub document: Map<String, Value>,
}Expand description
AnonUploadBody
JSON schema
{
"type": "object",
"required": [
"document"
],
"properties": {
"document": {
"type": "object"
}
}
}Fields§
§document: Map<String, Value>Trait Implementations§
Source§impl Clone for AnonUploadBody
impl Clone for AnonUploadBody
Source§fn clone(&self) -> AnonUploadBody
fn clone(&self) -> AnonUploadBody
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 AnonUploadBody
impl Debug for AnonUploadBody
Source§impl<'de> Deserialize<'de> for AnonUploadBody
impl<'de> Deserialize<'de> for AnonUploadBody
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
Auto Trait Implementations§
impl Freeze for AnonUploadBody
impl RefUnwindSafe for AnonUploadBody
impl Send for AnonUploadBody
impl Sync for AnonUploadBody
impl Unpin for AnonUploadBody
impl UnsafeUnpin for AnonUploadBody
impl UnwindSafe for AnonUploadBody
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