pub struct UpsertRecordResponse {
pub version: u64,
pub inserted: bool,
pub replaced_id: Option<String>,
pub record: RecordDto,
}Fields§
§version: u64§inserted: bool§replaced_id: Option<String>§record: RecordDtoTrait Implementations§
Source§impl Debug for UpsertRecordResponse
impl Debug for UpsertRecordResponse
Source§impl<'de> Deserialize<'de> for UpsertRecordResponse
impl<'de> Deserialize<'de> for UpsertRecordResponse
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 UpsertRecordResponse
impl RefUnwindSafe for UpsertRecordResponse
impl Send for UpsertRecordResponse
impl Sync for UpsertRecordResponse
impl Unpin for UpsertRecordResponse
impl UnsafeUnpin for UpsertRecordResponse
impl UnwindSafe for UpsertRecordResponse
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