pub struct ProcessorResponse {
pub resource_id: Option<i32>,
pub additional_resource_id: Option<i32>,
pub resource: Option<Value>,
pub error: Option<ProcessorError>,
}
Expand description
ProcessorResponse - Line 14268 in OpenAPI spec Contains the result or error from task processing
Fields§
§resource_id: Option<i32>
ID of the primary resource created/modified
additional_resource_id: Option<i32>
ID of an additional resource if applicable
resource: Option<Value>
The resource object itself
error: Option<ProcessorError>
Error code if the operation failed
Trait Implementations§
Source§impl Clone for ProcessorResponse
impl Clone for ProcessorResponse
Source§fn clone(&self) -> ProcessorResponse
fn clone(&self) -> ProcessorResponse
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 ProcessorResponse
impl Debug for ProcessorResponse
Source§impl<'de> Deserialize<'de> for ProcessorResponse
impl<'de> Deserialize<'de> for ProcessorResponse
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
Auto Trait Implementations§
impl Freeze for ProcessorResponse
impl RefUnwindSafe for ProcessorResponse
impl Send for ProcessorResponse
impl Sync for ProcessorResponse
impl Unpin for ProcessorResponse
impl UnwindSafe for ProcessorResponse
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