pub struct InterestOptions { /* private fields */ }
Implementations§
Source§impl InterestOptions
impl InterestOptions
pub const KEYEXPRS: InterestOptions
pub const SUBSCRIBERS: InterestOptions
pub const QUERYABLES: InterestOptions
pub const TOKENS: InterestOptions
pub const AGGREGATE: InterestOptions
pub const ALL: InterestOptions
pub const fn empty() -> Self
pub const fn keyexprs(&self) -> bool
pub const fn subscribers(&self) -> bool
pub const fn queryables(&self) -> bool
pub const fn tokens(&self) -> bool
pub const fn restricted(&self) -> bool
pub const fn named(&self) -> bool
pub const fn mapping(&self) -> bool
pub const fn aggregate(&self) -> bool
Trait Implementations§
Source§impl Add for InterestOptions
impl Add for InterestOptions
Source§impl AddAssign for InterestOptions
impl AddAssign for InterestOptions
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moreSource§impl Clone for InterestOptions
impl Clone for InterestOptions
Source§fn clone(&self) -> InterestOptions
fn clone(&self) -> InterestOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InterestOptions
impl Debug for InterestOptions
Source§impl From<u8> for InterestOptions
impl From<u8> for InterestOptions
Source§impl PartialEq for InterestOptions
impl PartialEq for InterestOptions
Source§impl Sub for InterestOptions
impl Sub for InterestOptions
Source§impl SubAssign for InterestOptions
impl SubAssign for InterestOptions
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-=
operation. Read moreimpl Copy for InterestOptions
impl Eq for InterestOptions
Auto Trait Implementations§
impl Freeze for InterestOptions
impl RefUnwindSafe for InterestOptions
impl Send for InterestOptions
impl Sync for InterestOptions
impl Unpin for InterestOptions
impl UnwindSafe for InterestOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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