pub struct ProjectionActionResult {
pub affected_count: usize,
pub affected_ids: Vec<ProjectionId>,
}Expand description
Result of a projection lifecycle action.
Fields§
§affected_count: usizeHow many projections were affected.
affected_ids: Vec<ProjectionId>IDs of affected projections.
Trait Implementations§
Source§impl Clone for ProjectionActionResult
impl Clone for ProjectionActionResult
Source§fn clone(&self) -> ProjectionActionResult
fn clone(&self) -> ProjectionActionResult
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 ProjectionActionResult
impl Debug for ProjectionActionResult
Source§impl<'de> Deserialize<'de> for ProjectionActionResult
impl<'de> Deserialize<'de> for ProjectionActionResult
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 ProjectionActionResult
impl RefUnwindSafe for ProjectionActionResult
impl Send for ProjectionActionResult
impl Sync for ProjectionActionResult
impl Unpin for ProjectionActionResult
impl UnsafeUnpin for ProjectionActionResult
impl UnwindSafe for ProjectionActionResult
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