pub enum LazyLoadOptions {
    Disabled,
    Enabled {
        include_redundant_members: bool,
    },
}Available on crate feature 
api and (crate features client-api-c or client-api-s) only.Expand description
Specifies options for lazy-loading membership events on supported endpoints
Variants§
Implementations§
Source§impl LazyLoadOptions
 
impl LazyLoadOptions
Sourcepub fn is_disabled(&self) -> bool
 
pub fn is_disabled(&self) -> bool
Returns true is self is Disabled.
Trait Implementations§
Source§impl Clone for LazyLoadOptions
 
impl Clone for LazyLoadOptions
Source§fn clone(&self) -> LazyLoadOptions
 
fn clone(&self) -> LazyLoadOptions
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 LazyLoadOptions
 
impl Debug for LazyLoadOptions
Source§impl Default for LazyLoadOptions
 
impl Default for LazyLoadOptions
Source§fn default() -> LazyLoadOptions
 
fn default() -> LazyLoadOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LazyLoadOptions
 
impl<'de> Deserialize<'de> for LazyLoadOptions
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<LazyLoadOptions, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<LazyLoadOptions, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<LazyLoadJsonRepr> for LazyLoadOptions
 
impl From<LazyLoadJsonRepr> for LazyLoadOptions
Source§fn from(opts: LazyLoadJsonRepr) -> LazyLoadOptions
 
fn from(opts: LazyLoadJsonRepr) -> LazyLoadOptions
Converts to this type from the input type.
Source§impl PartialEq for LazyLoadOptions
 
impl PartialEq for LazyLoadOptions
Source§impl Serialize for LazyLoadOptions
 
impl Serialize for LazyLoadOptions
Source§fn serialize<S>(
    &self,
    serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,
 
fn serialize<S>(
    &self,
    serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for LazyLoadOptions
impl Eq for LazyLoadOptions
impl StructuralPartialEq for LazyLoadOptions
Auto Trait Implementations§
impl Freeze for LazyLoadOptions
impl RefUnwindSafe for LazyLoadOptions
impl Send for LazyLoadOptions
impl Sync for LazyLoadOptions
impl Unpin for LazyLoadOptions
impl UnwindSafe for LazyLoadOptions
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<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.