pub enum ArrayUpdateOperationEnum {
Add,
Remove,
Edit,
Other_(String),
}Expand description
This list specifies the type of operation being performed on the array.
Possible values:
-
add: indicates an addition to the array. -
remove: indicates the removal of an element in the array.In this case the key field must contain the key of the element to be removed.
-
edit: indicates changes to an element in the array.
Variants§
Implementations§
Trait Implementations§
Source§impl AsRef<str> for ArrayUpdateOperationEnum
impl AsRef<str> for ArrayUpdateOperationEnum
Source§impl Clone for ArrayUpdateOperationEnum
impl Clone for ArrayUpdateOperationEnum
Source§fn clone(&self) -> ArrayUpdateOperationEnum
fn clone(&self) -> ArrayUpdateOperationEnum
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 ArrayUpdateOperationEnum
impl Debug for ArrayUpdateOperationEnum
Source§impl Display for ArrayUpdateOperationEnum
impl Display for ArrayUpdateOperationEnum
Source§impl<'a> From<&'a ArrayUpdateOperationEnum> for &'a str
impl<'a> From<&'a ArrayUpdateOperationEnum> for &'a str
Source§fn from(value: &'a ArrayUpdateOperationEnum) -> Self
fn from(value: &'a ArrayUpdateOperationEnum) -> Self
Converts to this type from the input type.
Source§impl Hash for ArrayUpdateOperationEnum
impl Hash for ArrayUpdateOperationEnum
Source§impl PartialEq for ArrayUpdateOperationEnum
impl PartialEq for ArrayUpdateOperationEnum
Source§impl WrapValue for ArrayUpdateOperationEnum
impl WrapValue for ArrayUpdateOperationEnum
fn wrap(self) -> ValueElements
impl Eq for ArrayUpdateOperationEnum
impl StructuralPartialEq for ArrayUpdateOperationEnum
Auto Trait Implementations§
impl Freeze for ArrayUpdateOperationEnum
impl RefUnwindSafe for ArrayUpdateOperationEnum
impl Send for ArrayUpdateOperationEnum
impl Sync for ArrayUpdateOperationEnum
impl Unpin for ArrayUpdateOperationEnum
impl UnsafeUnpin for ArrayUpdateOperationEnum
impl UnwindSafe for ArrayUpdateOperationEnum
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
Source§impl<To, T> CastInto<To> for T
impl<To, T> CastInto<To> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.