#[non_exhaustive]pub struct SubscriberRemovedMessage {
pub notebook_id: String,
pub session_id: String,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.notebook_id: StringThe ID of the notebook that the user unsubscribed from.
session_id: StringID of the session that was removed.
Implementations§
Trait Implementations§
Source§impl Clone for SubscriberRemovedMessage
impl Clone for SubscriberRemovedMessage
Source§fn clone(&self) -> SubscriberRemovedMessage
fn clone(&self) -> SubscriberRemovedMessage
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 Debug for SubscriberRemovedMessage
impl Debug for SubscriberRemovedMessage
Source§impl<'de> Deserialize<'de> for SubscriberRemovedMessage
impl<'de> Deserialize<'de> for SubscriberRemovedMessage
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 SubscriberRemovedMessage
Source§impl PartialEq for SubscriberRemovedMessage
impl PartialEq for SubscriberRemovedMessage
Source§impl Serialize for SubscriberRemovedMessage
impl Serialize for SubscriberRemovedMessage
impl StructuralPartialEq for SubscriberRemovedMessage
Auto Trait Implementations§
impl Freeze for SubscriberRemovedMessage
impl RefUnwindSafe for SubscriberRemovedMessage
impl Send for SubscriberRemovedMessage
impl Sync for SubscriberRemovedMessage
impl Unpin for SubscriberRemovedMessage
impl UnsafeUnpin for SubscriberRemovedMessage
impl UnwindSafe for SubscriberRemovedMessage
Blanket Implementations§
impl<T> BindgenSerializable for T
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