pub struct ResponseDataItemDetailsSuccess {
pub modified_time: String,
pub created_time: String,
pub id: String,
}
Expand description
Response details object returned when a record was succesfully insert or updated.
There are some other fields, shown here, but they are ignored for now, for simplicity’s sake.
Fields§
§modified_time: String
§created_time: String
§id: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ResponseDataItemDetailsSuccess
impl<'de> Deserialize<'de> for ResponseDataItemDetailsSuccess
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 ResponseDataItemDetailsSuccess
impl RefUnwindSafe for ResponseDataItemDetailsSuccess
impl Send for ResponseDataItemDetailsSuccess
impl Sync for ResponseDataItemDetailsSuccess
impl Unpin for ResponseDataItemDetailsSuccess
impl UnwindSafe for ResponseDataItemDetailsSuccess
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more