pub struct MessagingAction {
pub name: String,
}Expand description
MessagingAction : A simple object containing the name of the template.
Fields
name: StringImplementations
sourceimpl MessagingAction
impl MessagingAction
sourcepub fn new(name: String) -> MessagingAction
pub fn new(name: String) -> MessagingAction
A simple object containing the name of the template.
Trait Implementations
sourceimpl Clone for MessagingAction
impl Clone for MessagingAction
sourcefn clone(&self) -> MessagingAction
fn clone(&self) -> MessagingAction
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MessagingAction
impl Debug for MessagingAction
sourceimpl Default for MessagingAction
impl Default for MessagingAction
sourcefn default() -> MessagingAction
fn default() -> MessagingAction
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MessagingAction
impl<'de> Deserialize<'de> for MessagingAction
sourcefn 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
sourceimpl PartialEq<MessagingAction> for MessagingAction
impl PartialEq<MessagingAction> for MessagingAction
sourcefn eq(&self, other: &MessagingAction) -> bool
fn eq(&self, other: &MessagingAction) -> bool
sourceimpl Serialize for MessagingAction
impl Serialize for MessagingAction
impl StructuralPartialEq for MessagingAction
Auto Trait Implementations
impl RefUnwindSafe for MessagingAction
impl Send for MessagingAction
impl Sync for MessagingAction
impl Unpin for MessagingAction
impl UnwindSafe for MessagingAction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more