pub struct CallTranscript {
pub call_id: Option<String>,
pub transcript: Option<Vec<Monologue>>,
}Expand description
CallTranscript : A list with one entry per call.
Fields§
§call_id: Option<String>Gong’s unique numeric identifier for the call (up to 20 digits).
transcript: Option<Vec<Monologue>>List of monologues.
Implementations§
Source§impl CallTranscript
impl CallTranscript
Sourcepub fn new() -> CallTranscript
pub fn new() -> CallTranscript
A list with one entry per call.
Trait Implementations§
Source§impl Clone for CallTranscript
impl Clone for CallTranscript
Source§fn clone(&self) -> CallTranscript
fn clone(&self) -> CallTranscript
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 CallTranscript
impl Debug for CallTranscript
Source§impl Default for CallTranscript
impl Default for CallTranscript
Source§fn default() -> CallTranscript
fn default() -> CallTranscript
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallTranscript
impl<'de> Deserialize<'de> for CallTranscript
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
Source§impl PartialEq for CallTranscript
impl PartialEq for CallTranscript
Source§fn eq(&self, other: &CallTranscript) -> bool
fn eq(&self, other: &CallTranscript) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallTranscript
impl Serialize for CallTranscript
impl StructuralPartialEq for CallTranscript
Auto Trait Implementations§
impl Freeze for CallTranscript
impl RefUnwindSafe for CallTranscript
impl Send for CallTranscript
impl Sync for CallTranscript
impl Unpin for CallTranscript
impl UnsafeUnpin for CallTranscript
impl UnwindSafe for CallTranscript
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