pub struct CreateResponse {
pub object_id: String,
pub created_at: ParseDate,
pub echoed: ParseMap,
}Expand description
What a create returns: {objectId, createdAt}, plus the post-write value of any operation the
request carried.
Fields§
§object_id: String§created_at: ParseDate§echoed: ParseMapEmpty unless the body carried an Add, AddUnique, Remove or Increment.
Trait Implementations§
Source§impl Clone for CreateResponse
impl Clone for CreateResponse
Source§fn clone(&self) -> CreateResponse
fn clone(&self) -> CreateResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CreateResponse
impl RefUnwindSafe for CreateResponse
impl Send for CreateResponse
impl Sync for CreateResponse
impl Unpin for CreateResponse
impl UnsafeUnpin for CreateResponse
impl UnwindSafe for CreateResponse
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