pub enum ResponseOutputTextAnnotation {
Known(KnownResponseOutputTextAnnotation),
Unknown(ResponseOutputTextAnnotationUnknown),
}Expand description
表示 output_text 注解。
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ResponseOutputTextAnnotation
impl Clone for ResponseOutputTextAnnotation
Source§fn clone(&self) -> ResponseOutputTextAnnotation
fn clone(&self) -> ResponseOutputTextAnnotation
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 ResponseOutputTextAnnotation
impl Debug for ResponseOutputTextAnnotation
Source§impl<'de> Deserialize<'de> for ResponseOutputTextAnnotation
impl<'de> Deserialize<'de> for ResponseOutputTextAnnotation
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 ResponseOutputTextAnnotation
impl PartialEq for ResponseOutputTextAnnotation
Source§fn eq(&self, other: &ResponseOutputTextAnnotation) -> bool
fn eq(&self, other: &ResponseOutputTextAnnotation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResponseOutputTextAnnotation
Auto Trait Implementations§
impl Freeze for ResponseOutputTextAnnotation
impl RefUnwindSafe for ResponseOutputTextAnnotation
impl Send for ResponseOutputTextAnnotation
impl Sync for ResponseOutputTextAnnotation
impl Unpin for ResponseOutputTextAnnotation
impl UnsafeUnpin for ResponseOutputTextAnnotation
impl UnwindSafe for ResponseOutputTextAnnotation
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