pub struct RealmEventsConfigRepresentation {
pub admin_events_details_enabled: Option<bool>,
pub admin_events_enabled: Option<bool>,
pub enabled_event_types: Option<TypeVec<String>>,
pub events_enabled: Option<bool>,
pub events_expiration: Option<i64>,
pub events_listeners: Option<TypeVec<String>>,
}Fields§
§admin_events_details_enabled: Option<bool>§admin_events_enabled: Option<bool>§enabled_event_types: Option<TypeVec<String>>§events_enabled: Option<bool>§events_expiration: Option<i64>§events_listeners: Option<TypeVec<String>>Trait Implementations§
Source§impl Clone for RealmEventsConfigRepresentation
impl Clone for RealmEventsConfigRepresentation
Source§fn clone(&self) -> RealmEventsConfigRepresentation
fn clone(&self) -> RealmEventsConfigRepresentation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RealmEventsConfigRepresentation
impl Default for RealmEventsConfigRepresentation
Source§fn default() -> RealmEventsConfigRepresentation
fn default() -> RealmEventsConfigRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RealmEventsConfigRepresentation
impl<'de> Deserialize<'de> for RealmEventsConfigRepresentation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RealmEventsConfigRepresentation
Source§impl PartialEq for RealmEventsConfigRepresentation
impl PartialEq for RealmEventsConfigRepresentation
Source§fn eq(&self, other: &RealmEventsConfigRepresentation) -> bool
fn eq(&self, other: &RealmEventsConfigRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RealmEventsConfigRepresentation
Auto Trait Implementations§
impl Freeze for RealmEventsConfigRepresentation
impl RefUnwindSafe for RealmEventsConfigRepresentation
impl Send for RealmEventsConfigRepresentation
impl Sync for RealmEventsConfigRepresentation
impl Unpin for RealmEventsConfigRepresentation
impl UnsafeUnpin for RealmEventsConfigRepresentation
impl UnwindSafe for RealmEventsConfigRepresentation
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