pub struct VoiceCalls;Expand description
Marker for the /api/voice/calls/{sync,list} endpoint pair.
Use as a type parameter, never construct: client.sync::<VoiceCalls>(&items).
Trait Implementations§
Source§impl SyncEndpoint for VoiceCalls
impl SyncEndpoint for VoiceCalls
Source§type Record = VoiceCallRecord
type Record = VoiceCallRecord
One row’s worth of data. Must round-trip through JSON; the wire
shape uses camelCase per the platform’s Hono/Zod convention
(apply
#[serde(rename_all = "camelCase")] on your struct). Read moreSource§type Query = VoiceCallsQuery
type Query = VoiceCallsQuery
Query params for
GET /api/voice/{RESOURCE}. Typically a cursor
(before as RFC 3339) plus a limit and any resource-specific
filters (e.g. account_id). Serialized as URL query.Source§const CURRENT_SCHEMA_VERSION: u32 = 1
const CURRENT_SCHEMA_VERSION: u32 = 1
Current wire-schema version for this resource’s
Record type. Read moreAuto Trait Implementations§
impl Freeze for VoiceCalls
impl RefUnwindSafe for VoiceCalls
impl Send for VoiceCalls
impl Sync for VoiceCalls
impl Unpin for VoiceCalls
impl UnsafeUnpin for VoiceCalls
impl UnwindSafe for VoiceCalls
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