Struct revolt_database::util::permissions::DatabasePermissionQuery
source · 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
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> !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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§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.§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.§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.§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.§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.§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.§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.§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.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,
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>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
§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 more§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 more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self, then passes self.as_mut() into the pipe
function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target of a value. Read more§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.§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.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut() only in debug builds, and is erased in release
builds.