pub struct UpdateParam {
pub type_: Option<String>,
pub value: Option<String>,
}Expand description
An object representing the details of an update request.
Fields§
§type_: Option<String>The keys associated with an update request.
value: Option<String>The value of the keys submitted as part of an update request.
Trait Implementations§
Source§impl Clone for UpdateParam
impl Clone for UpdateParam
Source§fn clone(&self) -> UpdateParam
fn clone(&self) -> UpdateParam
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 UpdateParam
impl Debug for UpdateParam
Source§impl Default for UpdateParam
impl Default for UpdateParam
Source§fn default() -> UpdateParam
fn default() -> UpdateParam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateParam
impl<'de> Deserialize<'de> for UpdateParam
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 UpdateParam
impl PartialEq for UpdateParam
impl StructuralPartialEq for UpdateParam
Auto Trait Implementations§
impl Freeze for UpdateParam
impl RefUnwindSafe for UpdateParam
impl Send for UpdateParam
impl Sync for UpdateParam
impl Unpin for UpdateParam
impl UnwindSafe for UpdateParam
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