#[non_exhaustive]pub struct DescribeLanguageModelOutput {
pub language_model: Option<LanguageModel>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.language_model: Option<LanguageModel>
Provides information about the specified custom language model.
This parameter also shows if the base language model you used to create your custom language model has been updated. If Amazon Transcribe has updated the base model, you can create a new custom language model using the updated base model.
If you tried to create a new custom language model and the request wasn't successful, you can use this DescribeLanguageModel
to help identify the reason for this failure.
Implementations§
source§impl DescribeLanguageModelOutput
impl DescribeLanguageModelOutput
sourcepub fn language_model(&self) -> Option<&LanguageModel>
pub fn language_model(&self) -> Option<&LanguageModel>
Provides information about the specified custom language model.
This parameter also shows if the base language model you used to create your custom language model has been updated. If Amazon Transcribe has updated the base model, you can create a new custom language model using the updated base model.
If you tried to create a new custom language model and the request wasn't successful, you can use this DescribeLanguageModel
to help identify the reason for this failure.
source§impl DescribeLanguageModelOutput
impl DescribeLanguageModelOutput
sourcepub fn builder() -> DescribeLanguageModelOutputBuilder
pub fn builder() -> DescribeLanguageModelOutputBuilder
Creates a new builder-style object to manufacture DescribeLanguageModelOutput
.
Trait Implementations§
source§impl Clone for DescribeLanguageModelOutput
impl Clone for DescribeLanguageModelOutput
source§fn clone(&self) -> DescribeLanguageModelOutput
fn clone(&self) -> DescribeLanguageModelOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeLanguageModelOutput
impl Debug for DescribeLanguageModelOutput
source§impl RequestId for DescribeLanguageModelOutput
impl RequestId for DescribeLanguageModelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeLanguageModelOutput
Auto Trait Implementations§
impl Freeze for DescribeLanguageModelOutput
impl RefUnwindSafe for DescribeLanguageModelOutput
impl Send for DescribeLanguageModelOutput
impl Sync for DescribeLanguageModelOutput
impl Unpin for DescribeLanguageModelOutput
impl UnwindSafe for DescribeLanguageModelOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more