pub struct ProcessContentRequest {
pub content_to_process: ContentToProcess,
pub user_id: String,
pub tenant_id: String,
pub correlation_id: Option<String>,
}Expand description
The processContent request body. Mirrors Python’s
ProcessContentRequest; scope_identifier (sent as an If-None-Match
header, not a body field, and only meaningful after a
protectionScopes/compute precheck this port doesn’t perform) and
process_inline (ditto — derived from that same precheck’s execution
mode) are intentionally not modeled. See the crate docs’ “Scope” section.
Fields§
§content_to_process: ContentToProcess§user_id: String§tenant_id: String§correlation_id: Option<String>Trait Implementations§
Source§impl Clone for ProcessContentRequest
impl Clone for ProcessContentRequest
Source§fn clone(&self) -> ProcessContentRequest
fn clone(&self) -> ProcessContentRequest
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 ProcessContentRequest
impl Debug for ProcessContentRequest
Auto Trait Implementations§
impl Freeze for ProcessContentRequest
impl RefUnwindSafe for ProcessContentRequest
impl Send for ProcessContentRequest
impl Sync for ProcessContentRequest
impl Unpin for ProcessContentRequest
impl UnsafeUnpin for ProcessContentRequest
impl UnwindSafe for ProcessContentRequest
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