pub struct SerializableEventContent { /* private fields */ }Expand description
A thin wrapper to serialize a AnyMessageLikeEventContent.
Implementations§
Source§impl SerializableEventContent
impl SerializableEventContent
Sourcepub fn from_raw(
event: Raw<AnyMessageLikeEventContent>,
event_type: String,
) -> Self
pub fn from_raw( event: Raw<AnyMessageLikeEventContent>, event_type: String, ) -> Self
Create a SerializableEventContent from a raw
AnyMessageLikeEventContent along with its type.
Sourcepub fn new(event: &AnyMessageLikeEventContent) -> Result<Self, Error>
pub fn new(event: &AnyMessageLikeEventContent) -> Result<Self, Error>
Create a SerializableEventContent from an
AnyMessageLikeEventContent.
Sourcepub fn deserialize(&self) -> Result<AnyMessageLikeEventContent, Error>
pub fn deserialize(&self) -> Result<AnyMessageLikeEventContent, Error>
Convert a SerializableEventContent back into a
AnyMessageLikeEventContent.
Sourcepub fn raw(&self) -> (&Raw<AnyMessageLikeEventContent>, &str)
pub fn raw(&self) -> (&Raw<AnyMessageLikeEventContent>, &str)
Returns the raw event content along with its type.
Useful for callers manipulating custom events.
Trait Implementations§
Source§impl Clone for SerializableEventContent
impl Clone for SerializableEventContent
Source§fn clone(&self) -> SerializableEventContent
fn clone(&self) -> SerializableEventContent
Returns a copy 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 SerializableEventContent
Available on non-tarpaulin_include only.
impl Debug for SerializableEventContent
Available on non-
tarpaulin_include only.Source§impl<'de> Deserialize<'de> for SerializableEventContent
impl<'de> Deserialize<'de> for SerializableEventContent
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
Source§impl From<SerializableEventContent> for QueuedRequestKind
impl From<SerializableEventContent> for QueuedRequestKind
Source§fn from(content: SerializableEventContent) -> Self
fn from(content: SerializableEventContent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerializableEventContent
impl RefUnwindSafe for SerializableEventContent
impl Send for SerializableEventContent
impl Sync for SerializableEventContent
impl Unpin for SerializableEventContent
impl UnwindSafe for SerializableEventContent
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<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
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> 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