pub enum Metadata {
BaseTime(BaseTime),
UpstreamOpen(UpstreamOpen),
UpstreamAbnormalClose(UpstreamAbnormalClose),
UpstreamResume(UpstreamResume),
UpstreamNormalClose(UpstreamNormalClose),
DownstreamOpen(DownstreamOpen),
DownstreamAbnormalClose(DownstreamAbnormalClose),
DownstreamResume(DownstreamResume),
DownstreamNormalClose(DownstreamNormalClose),
}Variants
BaseTime(BaseTime)
UpstreamOpen(UpstreamOpen)
UpstreamAbnormalClose(UpstreamAbnormalClose)
UpstreamResume(UpstreamResume)
UpstreamNormalClose(UpstreamNormalClose)
DownstreamOpen(DownstreamOpen)
DownstreamAbnormalClose(DownstreamAbnormalClose)
DownstreamResume(DownstreamResume)
DownstreamNormalClose(DownstreamNormalClose)
Trait Implementations
impl StructuralPartialEq for Metadata
Auto Trait Implementations
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnwindSafe for Metadata
Blanket Implementations
impl<T> Any for Twhere
T: Any + ?Sized,
impl<T> Any for Twhere
T: Any + ?Sized,
fn type_id_compat(&self) -> TypeId
fn type_id_compat(&self) -> TypeId
TODO: once 1.33.0 is the minimum supported compiler version, remove
Any::type_id_compat and use StdAny::type_id instead.
https://github.com/rust-lang/rust/issues/27745 Read more
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more