pub struct MultiviewToModelRequest {Show 16 fields
pub images: Vec<Option<ImageInput>>,
pub model_version: Option<String>,
pub face_limit: Option<i32>,
pub texture: Option<bool>,
pub pbr: Option<bool>,
pub model_seed: Option<i32>,
pub texture_seed: Option<i32>,
pub texture_quality: Option<Quality>,
pub geometry_quality: Option<Quality>,
pub texture_alignment: Option<TextureAlignment>,
pub auto_size: Option<bool>,
pub orientation: Option<Orientation>,
pub quad: Option<bool>,
pub compress: Option<CompressionMode>,
pub generate_parts: Option<bool>,
pub smart_low_poly: Option<bool>,
}Expand description
Request body for multiview_to_model. Wire type: multiview_to_model.
Fields§
§images: Vec<Option<ImageInput>>Ordered list of images. None entries become {} placeholders on the wire.
model_version: Option<String>Model version.
face_limit: Option<i32>Target face count.
texture: Option<bool>Texture.
pbr: Option<bool>PBR.
model_seed: Option<i32>Seed.
texture_seed: Option<i32>Seed.
texture_quality: Option<Quality>Texture quality.
geometry_quality: Option<Quality>Geometry quality.
texture_alignment: Option<TextureAlignment>Texture alignment.
auto_size: Option<bool>Auto-size.
orientation: Option<Orientation>Orientation.
quad: Option<bool>Quad mesh.
compress: Option<CompressionMode>Compression.
generate_parts: Option<bool>Generate parts.
smart_low_poly: Option<bool>Smart lowpoly.
Trait Implementations§
Source§impl Clone for MultiviewToModelRequest
impl Clone for MultiviewToModelRequest
Source§fn clone(&self) -> MultiviewToModelRequest
fn clone(&self) -> MultiviewToModelRequest
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 MultiviewToModelRequest
impl Debug for MultiviewToModelRequest
Source§impl<'de> Deserialize<'de> for MultiviewToModelRequest
impl<'de> Deserialize<'de> for MultiviewToModelRequest
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 MultiviewToModelRequest
impl JsonSchema for MultiviewToModelRequest
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 MultiviewToModelRequest
impl RefUnwindSafe for MultiviewToModelRequest
impl Send for MultiviewToModelRequest
impl Sync for MultiviewToModelRequest
impl Unpin for MultiviewToModelRequest
impl UnsafeUnpin for MultiviewToModelRequest
impl UnwindSafe for MultiviewToModelRequest
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