pub struct DatabasePermissionQuery<'a> { /* private fields */ }Expand description
Permissions calculator
Implementations§
Source§impl<'a> DatabasePermissionQuery<'a>
impl<'a> DatabasePermissionQuery<'a>
Sourcepub fn new(
database: &'a Database,
perspective: &'a User,
) -> DatabasePermissionQuery<'a>
pub fn new( database: &'a Database, perspective: &'a User, ) -> DatabasePermissionQuery<'a>
Create a new permission calculator
Sourcepub async fn calc_user(self) -> DatabasePermissionQuery<'a>
pub async fn calc_user(self) -> DatabasePermissionQuery<'a>
Calculate the user permission value
Sourcepub async fn calc(self) -> DatabasePermissionQuery<'a>
pub async fn calc(self) -> DatabasePermissionQuery<'a>
Calculate the permission value
Sourcepub fn user(self, user: &'a User) -> DatabasePermissionQuery<'_>
pub fn user(self, user: &'a User) -> DatabasePermissionQuery<'_>
Use user
Sourcepub fn channel(self, channel: &'a Channel) -> DatabasePermissionQuery<'_>
pub fn channel(self, channel: &'a Channel) -> DatabasePermissionQuery<'_>
Use channel
Sourcepub fn server(self, server: &'a Server) -> DatabasePermissionQuery<'_>
pub fn server(self, server: &'a Server) -> DatabasePermissionQuery<'_>
Use server
Sourcepub fn member(self, member: &'a Member) -> DatabasePermissionQuery<'_>
pub fn member(self, member: &'a Member) -> DatabasePermissionQuery<'_>
Use member
Sourcepub fn channel_ref(&self) -> &Option<Cow<'_, Channel>>
pub fn channel_ref(&self) -> &Option<Cow<'_, Channel>>
Access the underlying server
Sourcepub fn server_ref(&self) -> &Option<Cow<'_, Server>>
pub fn server_ref(&self) -> &Option<Cow<'_, Server>>
Access the underlying server
Sourcepub fn member_ref(&self) -> &Option<Cow<'_, Member>>
pub fn member_ref(&self) -> &Option<Cow<'_, Member>>
Access the underlying member
Trait Implementations§
Source§impl<'a> Clone for DatabasePermissionQuery<'a>
impl<'a> Clone for DatabasePermissionQuery<'a>
Source§fn clone(&self) -> DatabasePermissionQuery<'a>
fn clone(&self) -> DatabasePermissionQuery<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PermissionQuery for DatabasePermissionQuery<'_>
impl PermissionQuery for DatabasePermissionQuery<'_>
Source§fn are_we_privileged<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_privileged<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user privileged?
Source§fn are_we_a_bot<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_a_bot<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user a bot?
Source§fn are_the_users_same<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_the_users_same<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user and the currently selected user the same?
Source§fn user_relationship<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = RelationshipStatus> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn user_relationship<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = RelationshipStatus> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the relationship with have with the currently selected user
Source§fn user_is_bot<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn user_is_bot<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Whether the currently selected user is a bot
Source§fn have_mutual_connection<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn have_mutual_connection<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Do we have a mutual connection with the currently selected user?
Source§fn are_we_server_owner<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_server_owner<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user the server’s owner?
Source§fn are_we_a_member<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_a_member<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user a member of the server?
Source§fn get_default_server_permissions<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = u64> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_default_server_permissions<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = u64> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get default server permission
Source§fn get_our_server_role_overrides<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Vec<Override>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_our_server_role_overrides<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Vec<Override>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the ordered role overrides (from lowest to highest) for this member in this server
Source§fn are_we_timed_out<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_timed_out<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Is our perspective user timed out on this server?
Source§fn get_channel_type<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ChannelType> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_channel_type<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ChannelType> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the type of the channel
Source§fn get_default_channel_permissions<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Override> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_default_channel_permissions<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Override> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the default channel permissions Group channel defaults should be mapped to an allow-only override
Source§fn get_our_channel_role_overrides<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Vec<Override>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_our_channel_role_overrides<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Vec<Override>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the ordered role overrides (from lowest to highest) for this member in this channel
Source§fn do_we_own_the_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn do_we_own_the_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Do we own this group or saved messages channel if it is one of those?
Source§fn are_we_part_of_the_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn are_we_part_of_the_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Are we a recipient of this channel?
Source§fn set_recipient_as_user<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn set_recipient_as_user<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Set the current user as the recipient of this channel (this will only ever be called for DirectMessage channels, use unimplemented!() for other code paths)
Source§fn set_server_from_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn set_server_from_channel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Set the current server as the server owning this channel (this will only ever be called for server channels, use unimplemented!() for other code paths)
Auto Trait Implementations§
impl<'a> Freeze for DatabasePermissionQuery<'a>
impl<'a> !RefUnwindSafe for DatabasePermissionQuery<'a>
impl<'a> Send for DatabasePermissionQuery<'a>
impl<'a> Sync for DatabasePermissionQuery<'a>
impl<'a> Unpin for DatabasePermissionQuery<'a>
impl<'a> !UnwindSafe for DatabasePermissionQuery<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.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> 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> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.