#[non_exhaustive]pub struct BatchCreateNotesRequest {
pub parent: String,
pub notes: HashMap<String, Note>,
/* private fields */
}Expand description
Request to create notes in batch.
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.parent: StringThe name of the project in the form of projects/[PROJECT_ID], under which
the notes are to be created.
notes: HashMap<String, Note>The notes to create. Max allowed length is 1000.
Implementations§
Trait Implementations§
Source§impl Clone for BatchCreateNotesRequest
impl Clone for BatchCreateNotesRequest
Source§fn clone(&self) -> BatchCreateNotesRequest
fn clone(&self) -> BatchCreateNotesRequest
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 BatchCreateNotesRequest
impl Debug for BatchCreateNotesRequest
Source§impl Default for BatchCreateNotesRequest
impl Default for BatchCreateNotesRequest
Source§fn default() -> BatchCreateNotesRequest
fn default() -> BatchCreateNotesRequest
Returns the “default value” for a type. Read more
Source§impl Message for BatchCreateNotesRequest
impl Message for BatchCreateNotesRequest
Source§impl PartialEq for BatchCreateNotesRequest
impl PartialEq for BatchCreateNotesRequest
impl StructuralPartialEq for BatchCreateNotesRequest
Auto Trait Implementations§
impl Freeze for BatchCreateNotesRequest
impl RefUnwindSafe for BatchCreateNotesRequest
impl Send for BatchCreateNotesRequest
impl Sync for BatchCreateNotesRequest
impl Unpin for BatchCreateNotesRequest
impl UnsafeUnpin for BatchCreateNotesRequest
impl UnwindSafe for BatchCreateNotesRequest
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