pub struct Dialog {
pub client: Client,
pub keys: Keys,
}Fields§
§client: Client§keys: KeysImplementations§
Source§impl Dialog
impl Dialog
Source§impl Dialog
impl Dialog
Sourcepub async fn mark_as_read(&self, note_id: &EventId) -> Result<()>
pub async fn mark_as_read(&self, note_id: &EventId) -> Result<()>
Mark a note as read - stores in local database only
Sourcepub async fn get_read_status(&self, note_id: &EventId) -> bool
pub async fn get_read_status(&self, note_id: &EventId) -> bool
Get read status for a note from local state
Sourcepub async fn mark_as_synced(&self, note_id: &EventId) -> Result<()>
pub async fn mark_as_synced(&self, note_id: &EventId) -> Result<()>
Mark a note as synced locally
Auto Trait Implementations§
impl !Freeze for Dialog
impl !RefUnwindSafe for Dialog
impl !UnwindSafe for Dialog
impl Send for Dialog
impl Sync for Dialog
impl Unpin for Dialog
impl UnsafeUnpin for Dialog
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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