pub struct AsyncAnnotateFileRequest {
pub features: Option<Vec<Feature>>,
pub image_context: Option<ImageContext>,
pub input_config: Option<InputConfig>,
pub output_config: Option<OutputConfig>,
}Expand description
An offline file annotation request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§features: Option<Vec<Feature>>Required. Requested features.
image_context: Option<ImageContext>Additional context that may accompany the image(s) in the file.
input_config: Option<InputConfig>Required. Information about the input file.
output_config: Option<OutputConfig>Required. The desired output location and metadata (e.g. format).
Trait Implementations§
Source§impl Clone for AsyncAnnotateFileRequest
impl Clone for AsyncAnnotateFileRequest
Source§fn clone(&self) -> AsyncAnnotateFileRequest
fn clone(&self) -> AsyncAnnotateFileRequest
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 AsyncAnnotateFileRequest
impl Debug for AsyncAnnotateFileRequest
Source§impl Default for AsyncAnnotateFileRequest
impl Default for AsyncAnnotateFileRequest
Source§fn default() -> AsyncAnnotateFileRequest
fn default() -> AsyncAnnotateFileRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsyncAnnotateFileRequest
impl<'de> Deserialize<'de> for AsyncAnnotateFileRequest
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 Serialize for AsyncAnnotateFileRequest
impl Serialize for AsyncAnnotateFileRequest
impl Part for AsyncAnnotateFileRequest
Auto Trait Implementations§
impl Freeze for AsyncAnnotateFileRequest
impl RefUnwindSafe for AsyncAnnotateFileRequest
impl Send for AsyncAnnotateFileRequest
impl Sync for AsyncAnnotateFileRequest
impl Unpin for AsyncAnnotateFileRequest
impl UnwindSafe for AsyncAnnotateFileRequest
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