pub struct VoiceAccountsQuery {
pub include_deleted: Option<bool>,
}Expand description
Query params for GET /api/voice/accounts. All fields optional.
Fields§
§include_deleted: Option<bool>Include soft-deleted tombstones in the response. Absent / false
returns only live lines — the restore-grade pull a fresh device
wants. A delta-syncing device sets this true to also learn
about deletes made elsewhere (doc 40).
Trait Implementations§
Source§impl Clone for VoiceAccountsQuery
impl Clone for VoiceAccountsQuery
Source§fn clone(&self) -> VoiceAccountsQuery
fn clone(&self) -> VoiceAccountsQuery
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 VoiceAccountsQuery
impl Debug for VoiceAccountsQuery
Source§impl Default for VoiceAccountsQuery
impl Default for VoiceAccountsQuery
Source§fn default() -> VoiceAccountsQuery
fn default() -> VoiceAccountsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoiceAccountsQuery
impl<'de> Deserialize<'de> for VoiceAccountsQuery
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 VoiceAccountsQuery
impl RefUnwindSafe for VoiceAccountsQuery
impl Send for VoiceAccountsQuery
impl Sync for VoiceAccountsQuery
impl Unpin for VoiceAccountsQuery
impl UnsafeUnpin for VoiceAccountsQuery
impl UnwindSafe for VoiceAccountsQuery
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