pub struct CallBatchError {
pub customer: CreateCustomerDto,
pub error: String,
}
Fields§
§customer: CreateCustomerDto
§error: String
Implementations§
Source§impl CallBatchError
impl CallBatchError
pub fn new(customer: CreateCustomerDto, error: String) -> CallBatchError
Trait Implementations§
Source§impl Clone for CallBatchError
impl Clone for CallBatchError
Source§fn clone(&self) -> CallBatchError
fn clone(&self) -> CallBatchError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CallBatchError
impl Debug for CallBatchError
Source§impl Default for CallBatchError
impl Default for CallBatchError
Source§fn default() -> CallBatchError
fn default() -> CallBatchError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallBatchError
impl<'de> Deserialize<'de> for CallBatchError
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 CallBatchError
impl PartialEq for CallBatchError
Source§impl Serialize for CallBatchError
impl Serialize for CallBatchError
impl StructuralPartialEq for CallBatchError
Auto Trait Implementations§
impl Freeze for CallBatchError
impl RefUnwindSafe for CallBatchError
impl Send for CallBatchError
impl Sync for CallBatchError
impl Unpin for CallBatchError
impl UnwindSafe for CallBatchError
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