pub struct UpdateResponse {
pub success: bool,
pub errors: Vec<SalesforceError>,
}Expand description
Response from an update or delete operation
Fields§
§success: boolWhether the operation was successful
errors: Vec<SalesforceError>Any errors that occurred
Trait Implementations§
Source§impl Clone for UpdateResponse
impl Clone for UpdateResponse
Source§fn clone(&self) -> UpdateResponse
fn clone(&self) -> UpdateResponse
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 UpdateResponse
impl Debug for UpdateResponse
Source§impl<'de> Deserialize<'de> for UpdateResponse
impl<'de> Deserialize<'de> for UpdateResponse
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 UpdateResponse
impl RefUnwindSafe for UpdateResponse
impl Send for UpdateResponse
impl Sync for UpdateResponse
impl Unpin for UpdateResponse
impl UnwindSafe for UpdateResponse
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