pub struct RemoveAttributesActivity {
pub attributes: Vec<String>,
pub name: String,
pub next: Option<String>,
}Expand description
An activity that removes attributes from a message.
Fields§
§attributes: Vec<String>A list of 1-50 attributes to remove from the message.
name: StringThe name of the 'removeAttributes' activity.
next: Option<String>The next activity in the pipeline.
Trait Implementations§
Source§impl Clone for RemoveAttributesActivity
impl Clone for RemoveAttributesActivity
Source§fn clone(&self) -> RemoveAttributesActivity
fn clone(&self) -> RemoveAttributesActivity
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 RemoveAttributesActivity
impl Debug for RemoveAttributesActivity
Source§impl Default for RemoveAttributesActivity
impl Default for RemoveAttributesActivity
Source§fn default() -> RemoveAttributesActivity
fn default() -> RemoveAttributesActivity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveAttributesActivity
impl<'de> Deserialize<'de> for RemoveAttributesActivity
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 RemoveAttributesActivity
impl PartialEq for RemoveAttributesActivity
Source§impl Serialize for RemoveAttributesActivity
impl Serialize for RemoveAttributesActivity
impl StructuralPartialEq for RemoveAttributesActivity
Auto Trait Implementations§
impl Freeze for RemoveAttributesActivity
impl RefUnwindSafe for RemoveAttributesActivity
impl Send for RemoveAttributesActivity
impl Sync for RemoveAttributesActivity
impl Unpin for RemoveAttributesActivity
impl UnwindSafe for RemoveAttributesActivity
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