#[non_exhaustive]pub struct BatchCreateNotesResponse {
pub notes: Vec<Note>,
/* private fields */
}Expand description
Response for creating 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.notes: Vec<Note>The notes that were created.
Implementations§
Trait Implementations§
Source§impl Clone for BatchCreateNotesResponse
impl Clone for BatchCreateNotesResponse
Source§fn clone(&self) -> BatchCreateNotesResponse
fn clone(&self) -> BatchCreateNotesResponse
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 BatchCreateNotesResponse
impl Debug for BatchCreateNotesResponse
Source§impl Default for BatchCreateNotesResponse
impl Default for BatchCreateNotesResponse
Source§fn default() -> BatchCreateNotesResponse
fn default() -> BatchCreateNotesResponse
Returns the “default value” for a type. Read more
Source§impl Message for BatchCreateNotesResponse
impl Message for BatchCreateNotesResponse
Source§impl PartialEq for BatchCreateNotesResponse
impl PartialEq for BatchCreateNotesResponse
impl StructuralPartialEq for BatchCreateNotesResponse
Auto Trait Implementations§
impl Freeze for BatchCreateNotesResponse
impl RefUnwindSafe for BatchCreateNotesResponse
impl Send for BatchCreateNotesResponse
impl Sync for BatchCreateNotesResponse
impl Unpin for BatchCreateNotesResponse
impl UnsafeUnpin for BatchCreateNotesResponse
impl UnwindSafe for BatchCreateNotesResponse
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