pub struct BatchActionItemResult {
pub tenant_id: String,
pub pool_id: String,
pub instance_id: String,
pub success: bool,
pub new_status: Option<String>,
pub error: Option<String>,
}Expand description
Result for a single item in a batch operation.
Fields§
§tenant_id: String§pool_id: String§instance_id: String§success: bool§new_status: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for BatchActionItemResult
impl Clone for BatchActionItemResult
Source§fn clone(&self) -> BatchActionItemResult
fn clone(&self) -> BatchActionItemResult
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 BatchActionItemResult
impl Debug for BatchActionItemResult
Source§impl<'de> Deserialize<'de> for BatchActionItemResult
impl<'de> Deserialize<'de> for BatchActionItemResult
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 BatchActionItemResult
impl RefUnwindSafe for BatchActionItemResult
impl Send for BatchActionItemResult
impl Sync for BatchActionItemResult
impl Unpin for BatchActionItemResult
impl UnsafeUnpin for BatchActionItemResult
impl UnwindSafe for BatchActionItemResult
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