pub struct AnalyzeImageOutput {
pub image: ImageSummary,
pub extraction: ExtractionSummary,
pub measurement: MeasurementSummary,
pub rankings: Vec<CandidateRankingSummary>,
pub evidence_cards: Vec<EvidenceCardSummary>,
pub warnings: Vec<String>,
pub limitations: Vec<String>,
}Fields§
§image: ImageSummary§extraction: ExtractionSummary§measurement: MeasurementSummary§rankings: Vec<CandidateRankingSummary>§evidence_cards: Vec<EvidenceCardSummary>§warnings: Vec<String>§limitations: Vec<String>Trait Implementations§
Source§impl Clone for AnalyzeImageOutput
impl Clone for AnalyzeImageOutput
Source§fn clone(&self) -> AnalyzeImageOutput
fn clone(&self) -> AnalyzeImageOutput
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 AnalyzeImageOutput
impl Debug for AnalyzeImageOutput
Source§impl<'de> Deserialize<'de> for AnalyzeImageOutput
impl<'de> Deserialize<'de> for AnalyzeImageOutput
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 JsonSchema for AnalyzeImageOutput
impl JsonSchema for AnalyzeImageOutput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AnalyzeImageOutput
impl PartialEq for AnalyzeImageOutput
Source§fn eq(&self, other: &AnalyzeImageOutput) -> bool
fn eq(&self, other: &AnalyzeImageOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalyzeImageOutput
impl Serialize for AnalyzeImageOutput
impl StructuralPartialEq for AnalyzeImageOutput
Auto Trait Implementations§
impl Freeze for AnalyzeImageOutput
impl RefUnwindSafe for AnalyzeImageOutput
impl Send for AnalyzeImageOutput
impl Sync for AnalyzeImageOutput
impl Unpin for AnalyzeImageOutput
impl UnsafeUnpin for AnalyzeImageOutput
impl UnwindSafe for AnalyzeImageOutput
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