pub struct VoiceRecordingsQuery {
pub before: Option<String>,
pub limit: Option<u32>,
}Expand description
Query params for GET /api/voice/recordings.
Fields§
§before: Option<String>RFC 3339 cursor; rows with created_at < before are returned.
limit: Option<u32>Trait Implementations§
Source§impl Clone for VoiceRecordingsQuery
impl Clone for VoiceRecordingsQuery
Source§fn clone(&self) -> VoiceRecordingsQuery
fn clone(&self) -> VoiceRecordingsQuery
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 VoiceRecordingsQuery
impl Debug for VoiceRecordingsQuery
Source§impl Default for VoiceRecordingsQuery
impl Default for VoiceRecordingsQuery
Source§fn default() -> VoiceRecordingsQuery
fn default() -> VoiceRecordingsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoiceRecordingsQuery
impl<'de> Deserialize<'de> for VoiceRecordingsQuery
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 VoiceRecordingsQuery
impl RefUnwindSafe for VoiceRecordingsQuery
impl Send for VoiceRecordingsQuery
impl Sync for VoiceRecordingsQuery
impl Unpin for VoiceRecordingsQuery
impl UnsafeUnpin for VoiceRecordingsQuery
impl UnwindSafe for VoiceRecordingsQuery
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