pub struct MedicalTranscript {
pub transcript_file_uri: Option<String>,
}Expand description
Identifies the location of a medical transcript.
Fields§
§transcript_file_uri: Option<String>The S3 object location of the medical transcript.
Use this URI to access the medical transcript. This URI points to the S3 bucket you created to store the medical transcript.
Trait Implementations§
Source§impl Clone for MedicalTranscript
impl Clone for MedicalTranscript
Source§fn clone(&self) -> MedicalTranscript
fn clone(&self) -> MedicalTranscript
Returns a duplicate of the value. Read more
1.0.0 · 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 MedicalTranscript
impl Debug for MedicalTranscript
Source§impl Default for MedicalTranscript
impl Default for MedicalTranscript
Source§fn default() -> MedicalTranscript
fn default() -> MedicalTranscript
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MedicalTranscript
impl<'de> Deserialize<'de> for MedicalTranscript
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 MedicalTranscript
impl PartialEq for MedicalTranscript
impl StructuralPartialEq for MedicalTranscript
Auto Trait Implementations§
impl Freeze for MedicalTranscript
impl RefUnwindSafe for MedicalTranscript
impl Send for MedicalTranscript
impl Sync for MedicalTranscript
impl Unpin for MedicalTranscript
impl UnwindSafe for MedicalTranscript
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