Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,11 @@ impl ViewContext {
pub fn sender(&self) -> Identity {
self.sender
}

/// Obtain an [`AnonymousViewContext`] by dropping `sender`.
pub fn as_anonymous(&self) -> AnonymousViewContext {
AnonymousViewContext::default()
}
}

/// The context that any reducer is provided with.
Expand Down
Loading