pub struct VoiceTranscripts;Expand description
Marker for the /api/voice/transcripts/{sync,list} endpoint pair.
Trait Implementations§
Source§impl SyncEndpoint for VoiceTranscripts
impl SyncEndpoint for VoiceTranscripts
Source§type Record = VoiceTranscriptRecord
type Record = VoiceTranscriptRecord
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 = VoiceTranscriptsQuery
type Query = VoiceTranscriptsQuery
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 VoiceTranscripts
impl RefUnwindSafe for VoiceTranscripts
impl Send for VoiceTranscripts
impl Sync for VoiceTranscripts
impl Unpin for VoiceTranscripts
impl UnsafeUnpin for VoiceTranscripts
impl UnwindSafe for VoiceTranscripts
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