pub struct KeyedUpdateResult {
pub id: EventId,
pub replaced_id: Option<EventId>,
}Expand description
Result of successful keyed update/reschedule.
Fields§
§id: EventIdID of the updated event.
replaced_id: Option<EventId>Replaced event ID for the same dedup key, if any.
Trait Implementations§
Source§impl Clone for KeyedUpdateResult
impl Clone for KeyedUpdateResult
Source§fn clone(&self) -> KeyedUpdateResult
fn clone(&self) -> KeyedUpdateResult
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 KeyedUpdateResult
impl Debug for KeyedUpdateResult
Source§impl PartialEq for KeyedUpdateResult
impl PartialEq for KeyedUpdateResult
impl Copy for KeyedUpdateResult
impl Eq for KeyedUpdateResult
impl StructuralPartialEq for KeyedUpdateResult
Auto Trait Implementations§
impl Freeze for KeyedUpdateResult
impl RefUnwindSafe for KeyedUpdateResult
impl Send for KeyedUpdateResult
impl Sync for KeyedUpdateResult
impl Unpin for KeyedUpdateResult
impl UnwindSafe for KeyedUpdateResult
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