pub struct CallListResponse {
pub calls: Option<Vec<SpatioCall>>,
pub total: Option<i32>,
}Fields§
§calls: Option<Vec<SpatioCall>>§total: Option<i32>Implementations§
Source§impl CallListResponse
impl CallListResponse
pub fn new(calls: Option<Vec<SpatioCall>>) -> CallListResponse
Trait Implementations§
Source§impl Clone for CallListResponse
impl Clone for CallListResponse
Source§fn clone(&self) -> CallListResponse
fn clone(&self) -> CallListResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CallListResponse
impl Debug for CallListResponse
Source§impl Default for CallListResponse
impl Default for CallListResponse
Source§fn default() -> CallListResponse
fn default() -> CallListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallListResponse
impl<'de> Deserialize<'de> for CallListResponse
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 CallListResponse
impl PartialEq for CallListResponse
Source§fn eq(&self, other: &CallListResponse) -> bool
fn eq(&self, other: &CallListResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallListResponse
impl Serialize for CallListResponse
impl StructuralPartialEq for CallListResponse
Auto Trait Implementations§
impl Freeze for CallListResponse
impl RefUnwindSafe for CallListResponse
impl Send for CallListResponse
impl Sync for CallListResponse
impl Unpin for CallListResponse
impl UnsafeUnpin for CallListResponse
impl UnwindSafe for CallListResponse
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