pub struct AnalyzeRequest {
pub consent: ConsentState,
pub image_bytes: Vec<u8>,
pub goal_vector: GoalVector,
pub candidates: Vec<CandidateColor>,
pub allowed_interventions: BTreeSet<AllowedIntervention>,
pub retain_metadata: bool,
pub allow_apparent_color_fallback: bool,
}Fields§
§consent: ConsentState§image_bytes: Vec<u8>§goal_vector: GoalVector§candidates: Vec<CandidateColor>§allowed_interventions: BTreeSet<AllowedIntervention>§retain_metadata: bool§allow_apparent_color_fallback: boolImplementations§
Trait Implementations§
Source§impl Clone for AnalyzeRequest
impl Clone for AnalyzeRequest
Source§fn clone(&self) -> AnalyzeRequest
fn clone(&self) -> AnalyzeRequest
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 AnalyzeRequest
impl Debug for AnalyzeRequest
Source§impl<'de> Deserialize<'de> for AnalyzeRequest
impl<'de> Deserialize<'de> for AnalyzeRequest
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 AnalyzeRequest
impl JsonSchema for AnalyzeRequest
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 moreAuto Trait Implementations§
impl Freeze for AnalyzeRequest
impl RefUnwindSafe for AnalyzeRequest
impl Send for AnalyzeRequest
impl Sync for AnalyzeRequest
impl Unpin for AnalyzeRequest
impl UnsafeUnpin for AnalyzeRequest
impl UnwindSafe for AnalyzeRequest
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