pub struct AttachmentAction {
pub id: String,
pub message_id: String,
pub person_id: String,
pub person_email: String,
pub room_id: String,
pub inputs: Value,
pub created: String,
pub raw: MercuryActivity,
}Expand description
An adaptive card submission from Mercury.
Fields§
§id: StringActivity ID.
message_id: StringID of the message the card was attached to.
person_id: StringID of the person who submitted the card.
person_email: StringEmail of the person who submitted the card.
room_id: StringConversation/space ID.
inputs: ValueCard form input values.
created: StringISO 8601 timestamp.
raw: MercuryActivityFull raw activity for advanced use.
Trait Implementations§
Source§impl Clone for AttachmentAction
impl Clone for AttachmentAction
Source§fn clone(&self) -> AttachmentAction
fn clone(&self) -> AttachmentAction
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 moreAuto Trait Implementations§
impl Freeze for AttachmentAction
impl RefUnwindSafe for AttachmentAction
impl Send for AttachmentAction
impl Sync for AttachmentAction
impl Unpin for AttachmentAction
impl UnsafeUnpin for AttachmentAction
impl UnwindSafe for AttachmentAction
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