pub struct ProcessorResponse {
pub resource_id: Option<i32>,
pub additional_resource_id: Option<i32>,
pub resource: Option<HashMap<String, Value>>,
pub error: Option<String>,
pub additional_info: Option<String>,
pub extra: Value,
}
Expand description
ProcessorResponse
Contains the result of an asynchronous operation
Fields§
§resource_id: Option<i32>
ID of the created/modified resource
additional_resource_id: Option<i32>
Additional resource ID (for operations creating multiple resources)
resource: Option<HashMap<String, Value>>
Full resource object for the created/modified resource
error: Option<String>
Error message if the operation failed
additional_info: Option<String>
Additional information about the operation
extra: Value
Only for truly unknown/future API fields
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