pub struct AddCommunicationToCaseResponse {
pub result: Option<bool>,
}Expand description
The result of the AddCommunicationToCase operation.
Fields§
§result: Option<bool>True if AddCommunicationToCase succeeds. Otherwise, returns an error.
Trait Implementations§
Source§impl Clone for AddCommunicationToCaseResponse
impl Clone for AddCommunicationToCaseResponse
Source§fn clone(&self) -> AddCommunicationToCaseResponse
fn clone(&self) -> AddCommunicationToCaseResponse
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 Default for AddCommunicationToCaseResponse
impl Default for AddCommunicationToCaseResponse
Source§fn default() -> AddCommunicationToCaseResponse
fn default() -> AddCommunicationToCaseResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddCommunicationToCaseResponse
impl<'de> Deserialize<'de> for AddCommunicationToCaseResponse
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
Source§impl PartialEq for AddCommunicationToCaseResponse
impl PartialEq for AddCommunicationToCaseResponse
Source§fn eq(&self, other: &AddCommunicationToCaseResponse) -> bool
fn eq(&self, other: &AddCommunicationToCaseResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddCommunicationToCaseResponse
Auto Trait Implementations§
impl Freeze for AddCommunicationToCaseResponse
impl RefUnwindSafe for AddCommunicationToCaseResponse
impl Send for AddCommunicationToCaseResponse
impl Sync for AddCommunicationToCaseResponse
impl Unpin for AddCommunicationToCaseResponse
impl UnwindSafe for AddCommunicationToCaseResponse
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