pub struct GetCallRecordingsResponseRecording {
pub callrecording: Option<String>,
pub datetime: Option<NaiveDateTime>,
pub destination: Option<u64>,
pub type: Option<String>,
pub subaccount: Option<u64>,
pub duration: Option<String>,
}Expand description
Response body for Client::get_call_recordings (wire method getCallRecordings).
Fields§
§callrecording: Option<String>§datetime: Option<NaiveDateTime>§destination: Option<u64>§type: Option<String>§subaccount: Option<u64>§duration: Option<String>Trait Implementations§
Source§impl Clone for GetCallRecordingsResponseRecording
impl Clone for GetCallRecordingsResponseRecording
Source§fn clone(&self) -> GetCallRecordingsResponseRecording
fn clone(&self) -> GetCallRecordingsResponseRecording
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 Default for GetCallRecordingsResponseRecording
impl Default for GetCallRecordingsResponseRecording
Source§fn default() -> GetCallRecordingsResponseRecording
fn default() -> GetCallRecordingsResponseRecording
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCallRecordingsResponseRecording
impl<'de> Deserialize<'de> for GetCallRecordingsResponseRecording
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
Auto Trait Implementations§
impl Freeze for GetCallRecordingsResponseRecording
impl RefUnwindSafe for GetCallRecordingsResponseRecording
impl Send for GetCallRecordingsResponseRecording
impl Sync for GetCallRecordingsResponseRecording
impl Unpin for GetCallRecordingsResponseRecording
impl UnsafeUnpin for GetCallRecordingsResponseRecording
impl UnwindSafe for GetCallRecordingsResponseRecording
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