#[non_exhaustive]pub struct BulkAssignResponse {
pub assigned_count: u32,
}Expand description
Response for successful bulk assignment operations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assigned_count: u32Number of entities assigned.
Trait Implementations§
Source§impl Clone for BulkAssignResponse
impl Clone for BulkAssignResponse
Source§fn clone(&self) -> BulkAssignResponse
fn clone(&self) -> BulkAssignResponse
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 BulkAssignResponse
impl Debug for BulkAssignResponse
Source§impl<'de> Deserialize<'de> for BulkAssignResponse
impl<'de> Deserialize<'de> for BulkAssignResponse
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
Source§impl PartialEq for BulkAssignResponse
impl PartialEq for BulkAssignResponse
Source§impl Serialize for BulkAssignResponse
impl Serialize for BulkAssignResponse
impl Eq for BulkAssignResponse
impl StructuralPartialEq for BulkAssignResponse
Auto Trait Implementations§
impl Freeze for BulkAssignResponse
impl RefUnwindSafe for BulkAssignResponse
impl Send for BulkAssignResponse
impl Sync for BulkAssignResponse
impl Unpin for BulkAssignResponse
impl UnsafeUnpin for BulkAssignResponse
impl UnwindSafe for BulkAssignResponse
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