#[non_exhaustive]pub struct ImportDocumentsResponse {
pub warnings: Vec<Status>,
/* private fields */
}Available on crate feature
documents only.Expand description
Response message for Documents.ImportDocuments.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.warnings: Vec<Status>Includes details about skipped documents or any other warnings.
Implementations§
Source§impl ImportDocumentsResponse
impl ImportDocumentsResponse
pub fn new() -> Self
Sourcepub fn set_warnings<T, V>(self, v: T) -> Self
pub fn set_warnings<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for ImportDocumentsResponse
impl Clone for ImportDocumentsResponse
Source§fn clone(&self) -> ImportDocumentsResponse
fn clone(&self) -> ImportDocumentsResponse
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 ImportDocumentsResponse
impl Debug for ImportDocumentsResponse
Source§impl Default for ImportDocumentsResponse
impl Default for ImportDocumentsResponse
Source§fn default() -> ImportDocumentsResponse
fn default() -> ImportDocumentsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ImportDocumentsResponse
impl Message for ImportDocumentsResponse
Source§impl PartialEq for ImportDocumentsResponse
impl PartialEq for ImportDocumentsResponse
impl StructuralPartialEq for ImportDocumentsResponse
Auto Trait Implementations§
impl Freeze for ImportDocumentsResponse
impl RefUnwindSafe for ImportDocumentsResponse
impl Send for ImportDocumentsResponse
impl Sync for ImportDocumentsResponse
impl Unpin for ImportDocumentsResponse
impl UnwindSafe for ImportDocumentsResponse
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