pub struct UpdateEventRequest {
pub account_id: String,
pub updates: HashMap<String, Value>,
pub send_updates: Option<SendUpdates>,
}Expand description
UpdateEventRequest : Sparse update. updates is a free-form map of fields to change; only keys present are applied. The server-side capability gate rejects fields that the underlying provider doesn’t support.
Fields§
§account_id: String§updates: HashMap<String, Value>§send_updates: Option<SendUpdates>Implementations§
Trait Implementations§
Source§impl Clone for UpdateEventRequest
impl Clone for UpdateEventRequest
Source§fn clone(&self) -> UpdateEventRequest
fn clone(&self) -> UpdateEventRequest
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 UpdateEventRequest
impl Debug for UpdateEventRequest
Source§impl Default for UpdateEventRequest
impl Default for UpdateEventRequest
Source§fn default() -> UpdateEventRequest
fn default() -> UpdateEventRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateEventRequest
impl<'de> Deserialize<'de> for UpdateEventRequest
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 UpdateEventRequest
impl PartialEq for UpdateEventRequest
Source§fn eq(&self, other: &UpdateEventRequest) -> bool
fn eq(&self, other: &UpdateEventRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateEventRequest
impl Serialize for UpdateEventRequest
impl StructuralPartialEq for UpdateEventRequest
Auto Trait Implementations§
impl Freeze for UpdateEventRequest
impl RefUnwindSafe for UpdateEventRequest
impl Send for UpdateEventRequest
impl Sync for UpdateEventRequest
impl Unpin for UpdateEventRequest
impl UnsafeUnpin for UpdateEventRequest
impl UnwindSafe for UpdateEventRequest
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