pub struct UpsertResultDto {
pub inserted: bool,
pub replaced_id: Option<String>,
pub record: RecordDto,
}Expand description
Per-record outcome of a batch upsert, in input order.
Fields§
§inserted: bool§replaced_id: Option<String>§record: RecordDtoTrait Implementations§
Source§impl Debug for UpsertResultDto
impl Debug for UpsertResultDto
Source§impl<'de> Deserialize<'de> for UpsertResultDto
impl<'de> Deserialize<'de> for UpsertResultDto
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 UpsertResultDto
impl RefUnwindSafe for UpsertResultDto
impl Send for UpsertResultDto
impl Sync for UpsertResultDto
impl Unpin for UpsertResultDto
impl UnsafeUnpin for UpsertResultDto
impl UnwindSafe for UpsertResultDto
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