pub struct CreateNotificationWithRetryResult {
pub response: CreateNotificationSuccessResponse,
pub was_replayed: bool,
}Expand description
Result of create_notification_with_retry: the create response plus
whether the server replayed a previously completed request
(Idempotent-Replayed response header).
Fields§
§response: CreateNotificationSuccessResponse§was_replayed: boolTrait Implementations§
Source§impl Clone for CreateNotificationWithRetryResult
impl Clone for CreateNotificationWithRetryResult
Source§fn clone(&self) -> CreateNotificationWithRetryResult
fn clone(&self) -> CreateNotificationWithRetryResult
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 moreAuto Trait Implementations§
impl Freeze for CreateNotificationWithRetryResult
impl RefUnwindSafe for CreateNotificationWithRetryResult
impl Send for CreateNotificationWithRetryResult
impl Sync for CreateNotificationWithRetryResult
impl Unpin for CreateNotificationWithRetryResult
impl UnsafeUnpin for CreateNotificationWithRetryResult
impl UnwindSafe for CreateNotificationWithRetryResult
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