pub struct TaskOutput {
pub model: Option<String>,
pub base_model: Option<String>,
pub pbr_model: Option<String>,
pub rendered_image: Option<String>,
pub riggable: Option<bool>,
pub rig_type: Option<RigTypeResponse>,
}Expand description
Download URLs and auxiliary output fields returned on the task object.
Fields§
§model: Option<String>URL for the main output model.
base_model: Option<String>URL for the base (pre-texture) model.
pbr_model: Option<String>URL for the PBR-textured model.
rendered_image: Option<String>URL for a rendered preview image.
riggable: Option<bool>Populated by check_riggable.
rig_type: Option<RigTypeResponse>Populated by check_riggable.
Trait Implementations§
Source§impl Clone for TaskOutput
impl Clone for TaskOutput
Source§fn clone(&self) -> TaskOutput
fn clone(&self) -> TaskOutput
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 TaskOutput
impl Debug for TaskOutput
Source§impl Default for TaskOutput
impl Default for TaskOutput
Source§fn default() -> TaskOutput
fn default() -> TaskOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskOutput
impl<'de> Deserialize<'de> for TaskOutput
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 TaskOutput
impl JsonSchema for TaskOutput
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 TaskOutput
impl RefUnwindSafe for TaskOutput
impl Send for TaskOutput
impl Sync for TaskOutput
impl Unpin for TaskOutput
impl UnsafeUnpin for TaskOutput
impl UnwindSafe for TaskOutput
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