pub struct CallLogResponse400 {
pub success: Option<bool>,
pub error: Option<String>,
pub error_info: Option<String>,
pub data: Option<Option<Value>>,
pub additional_data: Option<Option<Value>>,
}
Fields§
§success: Option<bool>
§error: Option<String>
The description of the error
error_info: Option<String>
A message describing how to solve the problem
data: Option<Option<Value>>
§additional_data: Option<Option<Value>>
Implementations§
Source§impl CallLogResponse400
impl CallLogResponse400
pub fn new() -> CallLogResponse400
Trait Implementations§
Source§impl Clone for CallLogResponse400
impl Clone for CallLogResponse400
Source§fn clone(&self) -> CallLogResponse400
fn clone(&self) -> CallLogResponse400
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 CallLogResponse400
impl Debug for CallLogResponse400
Source§impl<'de> Deserialize<'de> for CallLogResponse400
impl<'de> Deserialize<'de> for CallLogResponse400
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 CallLogResponse400
impl PartialEq for CallLogResponse400
Source§impl Serialize for CallLogResponse400
impl Serialize for CallLogResponse400
impl StructuralPartialEq for CallLogResponse400
Auto Trait Implementations§
impl Freeze for CallLogResponse400
impl RefUnwindSafe for CallLogResponse400
impl Send for CallLogResponse400
impl Sync for CallLogResponse400
impl Unpin for CallLogResponse400
impl UnwindSafe for CallLogResponse400
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