pub struct Messaging { /* private fields */ }Implementations§
source§impl Messaging
impl Messaging
sourcepub async fn send_text_markdown(
&self,
room: &Room,
message: String,
response_type: MessageResponseType,
) -> Result<Response, Error>
pub async fn send_text_markdown( &self, room: &Room, message: String, response_type: MessageResponseType, ) -> Result<Response, Error>
Examples found in repository?
examples/quick_start.rs (line 78)
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
async fn register_event_handlers(matrix_link: MatrixLink) {
let rooms = matrix_link.rooms();
// We auto-accept all invitations
rooms.on_invitation(|_event, _room| async move { Ok(InvitationDecision::Join) });
// We send an introduction to all rooms we join
let messaging = matrix_link.messaging();
rooms.on_joined(|_event, room| async move {
let _ = messaging
.send_text_markdown(&room, "Hello!".to_owned(), MessageResponseType::InRoom)
.await
.expect("Failed to send message");
Ok(())
});
// We listen for reactions to messages and send a reply to the original message that received the reaction
let messaging = matrix_link.messaging();
let reacting = matrix_link.reacting();
reacting.on_actionable_reaction(|event, room, reaction_event_content| async move {
let response_text = if reaction_event_content.relates_to.key == "👍️" {
format!("{} reacted to this message with thumbs up!", event.sender())
} else {
format!(
"{} reacted to this message with an unknown-to-me reaction ({}).",
event.sender(),
reaction_event_content.relates_to.key,
)
};
let response_type =
MessageResponseType::Reply(reaction_event_content.relates_to.event_id.clone());
let _ = messaging
.send_notice_markdown(&room, response_text, response_type)
.await
.expect("Failed to send message");
Ok(())
});
}sourcepub async fn send_notice_markdown(
&self,
room: &Room,
message: String,
response_type: MessageResponseType,
) -> Result<Response, Error>
pub async fn send_notice_markdown( &self, room: &Room, message: String, response_type: MessageResponseType, ) -> Result<Response, Error>
Examples found in repository?
examples/quick_start.rs (line 103)
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
async fn register_event_handlers(matrix_link: MatrixLink) {
let rooms = matrix_link.rooms();
// We auto-accept all invitations
rooms.on_invitation(|_event, _room| async move { Ok(InvitationDecision::Join) });
// We send an introduction to all rooms we join
let messaging = matrix_link.messaging();
rooms.on_joined(|_event, room| async move {
let _ = messaging
.send_text_markdown(&room, "Hello!".to_owned(), MessageResponseType::InRoom)
.await
.expect("Failed to send message");
Ok(())
});
// We listen for reactions to messages and send a reply to the original message that received the reaction
let messaging = matrix_link.messaging();
let reacting = matrix_link.reacting();
reacting.on_actionable_reaction(|event, room, reaction_event_content| async move {
let response_text = if reaction_event_content.relates_to.key == "👍️" {
format!("{} reacted to this message with thumbs up!", event.sender())
} else {
format!(
"{} reacted to this message with an unknown-to-me reaction ({}).",
event.sender(),
reaction_event_content.relates_to.key,
)
};
let response_type =
MessageResponseType::Reply(reaction_event_content.relates_to.event_id.clone());
let _ = messaging
.send_notice_markdown(&room, response_text, response_type)
.await
.expect("Failed to send message");
Ok(())
});
}pub async fn send_event( &self, room: &Room, content: &mut RoomMessageEventContent, response_type: MessageResponseType, ) -> Result<Response, Error>
pub async fn redact_event( &self, room: &Room, target_event_id: OwnedEventId, reason: Option<String>, ) -> HttpResult<Response>
sourcepub fn on_actionable_room_message<F, Fut>(&self, callback: F)
pub fn on_actionable_room_message<F, Fut>(&self, callback: F)
Register a callback to be called when a message is received in any room and it seems like one that we should handle.
Messages by our own user are ignored.
Messages of type MessageType::Notice are ignored.
Messages that represent edits are ignored.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Messaging
impl !RefUnwindSafe for Messaging
impl Send for Messaging
impl Sync for Messaging
impl Unpin for Messaging
impl !UnwindSafe for Messaging
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more