pub struct PluginBatchResponse {
pub ok: bool,
pub warnings: Vec<String>,
pub error: Option<PluginErrorPayload>,
pub responses: Vec<PluginResponse>,
}Fields§
§ok: bool§warnings: Vec<String>§error: Option<PluginErrorPayload>§responses: Vec<PluginResponse>Trait Implementations§
Source§impl Clone for PluginBatchResponse
impl Clone for PluginBatchResponse
Source§fn clone(&self) -> PluginBatchResponse
fn clone(&self) -> PluginBatchResponse
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 PluginBatchResponse
impl Debug for PluginBatchResponse
Source§impl<'de> Deserialize<'de> for PluginBatchResponse
impl<'de> Deserialize<'de> for PluginBatchResponse
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 PluginBatchResponse
impl RefUnwindSafe for PluginBatchResponse
impl Send for PluginBatchResponse
impl Sync for PluginBatchResponse
impl Unpin for PluginBatchResponse
impl UnsafeUnpin for PluginBatchResponse
impl UnwindSafe for PluginBatchResponse
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