pub struct CallLogResponse403 {
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 CallLogResponse403
impl CallLogResponse403
pub fn new() -> CallLogResponse403
Trait Implementations§
Source§impl Clone for CallLogResponse403
impl Clone for CallLogResponse403
Source§fn clone(&self) -> CallLogResponse403
fn clone(&self) -> CallLogResponse403
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 CallLogResponse403
impl Debug for CallLogResponse403
Source§impl<'de> Deserialize<'de> for CallLogResponse403
impl<'de> Deserialize<'de> for CallLogResponse403
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 CallLogResponse403
impl PartialEq for CallLogResponse403
Source§impl Serialize for CallLogResponse403
impl Serialize for CallLogResponse403
impl StructuralPartialEq for CallLogResponse403
Auto Trait Implementations§
impl Freeze for CallLogResponse403
impl RefUnwindSafe for CallLogResponse403
impl Send for CallLogResponse403
impl Sync for CallLogResponse403
impl Unpin for CallLogResponse403
impl UnwindSafe for CallLogResponse403
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