pub struct VoiceCallsQuery {
pub before: Option<String>,
pub limit: Option<u32>,
}Expand description
Query params for GET /api/voice/calls. All fields optional — the
default returns the newest page.
Fields§
§before: Option<String>RFC 3339 cursor; rows with end_at < before are returned.
limit: Option<u32>1..=200. Server default is 50.
Trait Implementations§
Source§impl Clone for VoiceCallsQuery
impl Clone for VoiceCallsQuery
Source§fn clone(&self) -> VoiceCallsQuery
fn clone(&self) -> VoiceCallsQuery
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 VoiceCallsQuery
impl Debug for VoiceCallsQuery
Source§impl Default for VoiceCallsQuery
impl Default for VoiceCallsQuery
Source§fn default() -> VoiceCallsQuery
fn default() -> VoiceCallsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoiceCallsQuery
impl<'de> Deserialize<'de> for VoiceCallsQuery
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 VoiceCallsQuery
impl RefUnwindSafe for VoiceCallsQuery
impl Send for VoiceCallsQuery
impl Sync for VoiceCallsQuery
impl Unpin for VoiceCallsQuery
impl UnsafeUnpin for VoiceCallsQuery
impl UnwindSafe for VoiceCallsQuery
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