pub struct AlterTransactionUnsetProperty {
pub key: Option<String>,
pub mode: Option<String>,
}Fields§
§key: Option<String>§mode: Option<String>The behavior if the property key to unset does not exist. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Skip (default): skip the property to unset - Fail: fail the entire operation
Implementations§
Trait Implementations§
Source§impl Clone for AlterTransactionUnsetProperty
impl Clone for AlterTransactionUnsetProperty
Source§fn clone(&self) -> AlterTransactionUnsetProperty
fn clone(&self) -> AlterTransactionUnsetProperty
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 Default for AlterTransactionUnsetProperty
impl Default for AlterTransactionUnsetProperty
Source§fn default() -> AlterTransactionUnsetProperty
fn default() -> AlterTransactionUnsetProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlterTransactionUnsetProperty
impl<'de> Deserialize<'de> for AlterTransactionUnsetProperty
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AlterTransactionUnsetProperty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AlterTransactionUnsetProperty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AlterTransactionUnsetProperty
impl PartialEq for AlterTransactionUnsetProperty
Source§fn eq(&self, other: &AlterTransactionUnsetProperty) -> bool
fn eq(&self, other: &AlterTransactionUnsetProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AlterTransactionUnsetProperty
impl Serialize for AlterTransactionUnsetProperty
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AlterTransactionUnsetProperty
Auto Trait Implementations§
impl Freeze for AlterTransactionUnsetProperty
impl RefUnwindSafe for AlterTransactionUnsetProperty
impl Send for AlterTransactionUnsetProperty
impl Sync for AlterTransactionUnsetProperty
impl Unpin for AlterTransactionUnsetProperty
impl UnsafeUnpin for AlterTransactionUnsetProperty
impl UnwindSafe for AlterTransactionUnsetProperty
Blanket Implementations§
impl<T> Allocation for T
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