#[non_exhaustive]pub struct RejoinUserEventsResponse {
pub rejoined_user_events_count: i64,
/* private fields */
}Expand description
Response message for RejoinUserEvents method.
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.rejoined_user_events_count: i64Number of user events that were joined with latest product catalog.
Implementations§
Source§impl RejoinUserEventsResponse
impl RejoinUserEventsResponse
Sourcepub fn set_rejoined_user_events_count<T: Into<i64>>(self, v: T) -> Self
pub fn set_rejoined_user_events_count<T: Into<i64>>(self, v: T) -> Self
Sets the value of rejoined_user_events_count.
§Example
ⓘ
let x = RejoinUserEventsResponse::new().set_rejoined_user_events_count(42);Trait Implementations§
Source§impl Clone for RejoinUserEventsResponse
impl Clone for RejoinUserEventsResponse
Source§fn clone(&self) -> RejoinUserEventsResponse
fn clone(&self) -> RejoinUserEventsResponse
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 RejoinUserEventsResponse
impl Debug for RejoinUserEventsResponse
Source§impl Default for RejoinUserEventsResponse
impl Default for RejoinUserEventsResponse
Source§fn default() -> RejoinUserEventsResponse
fn default() -> RejoinUserEventsResponse
Returns the “default value” for a type. Read more
Source§impl Message for RejoinUserEventsResponse
impl Message for RejoinUserEventsResponse
Source§impl PartialEq for RejoinUserEventsResponse
impl PartialEq for RejoinUserEventsResponse
impl StructuralPartialEq for RejoinUserEventsResponse
Auto Trait Implementations§
impl Freeze for RejoinUserEventsResponse
impl RefUnwindSafe for RejoinUserEventsResponse
impl Send for RejoinUserEventsResponse
impl Sync for RejoinUserEventsResponse
impl Unpin for RejoinUserEventsResponse
impl UnsafeUnpin for RejoinUserEventsResponse
impl UnwindSafe for RejoinUserEventsResponse
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