#[non_exhaustive]pub struct GcsDocuments {
pub documents: Vec<GcsDocument>,
/* private fields */
}Expand description
Specifies a set of documents on Cloud Storage.
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.documents: Vec<GcsDocument>The list of documents.
Implementations§
Source§impl GcsDocuments
impl GcsDocuments
pub fn new() -> Self
Sourcepub fn set_documents<T, V>(self, v: T) -> Self
pub fn set_documents<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for GcsDocuments
impl Clone for GcsDocuments
Source§fn clone(&self) -> GcsDocuments
fn clone(&self) -> GcsDocuments
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 GcsDocuments
impl Debug for GcsDocuments
Source§impl Default for GcsDocuments
impl Default for GcsDocuments
Source§fn default() -> GcsDocuments
fn default() -> GcsDocuments
Returns the “default value” for a type. Read more
Source§impl Message for GcsDocuments
impl Message for GcsDocuments
Source§impl PartialEq for GcsDocuments
impl PartialEq for GcsDocuments
impl StructuralPartialEq for GcsDocuments
Auto Trait Implementations§
impl Freeze for GcsDocuments
impl RefUnwindSafe for GcsDocuments
impl Send for GcsDocuments
impl Sync for GcsDocuments
impl Unpin for GcsDocuments
impl UnwindSafe for GcsDocuments
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