Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make permissions sendable and syncable #188

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/dx/access/permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const JOIN: u8 = 0b1000_0000;
/// allowed resources within the provided permissions.
///
/// [`PubNub Access Manager`]: https://www.pubnub.com/docs/general/security/access-control
pub trait Permission {
pub trait Permission: Send + Sync {
/// The name or pattern of the channel name for which permissions were
/// specified.
fn id(&self) -> &String;
Expand Down
Loading