pub enum BoundaryKind {
ResponseStarted,
ChannelStarted,
ChannelFinished,
ResponseFinished,
UsageFinalized,
}Expand description
Boundary kinds.
Variants§
ResponseStarted
Response started.
ChannelStarted
Channel started.
ChannelFinished
Channel finished.
ResponseFinished
Response finished (dialect-level).
UsageFinalized
Usage finalized.
Trait Implementations§
Source§impl Clone for BoundaryKind
impl Clone for BoundaryKind
Source§fn clone(&self) -> BoundaryKind
fn clone(&self) -> BoundaryKind
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 moreimpl Copy for BoundaryKind
Source§impl Debug for BoundaryKind
impl Debug for BoundaryKind
Source§impl<'de> Deserialize<'de> for BoundaryKind
impl<'de> Deserialize<'de> for BoundaryKind
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 BoundaryKind
Source§impl PartialEq for BoundaryKind
impl PartialEq for BoundaryKind
Source§impl Serialize for BoundaryKind
impl Serialize for BoundaryKind
impl StructuralPartialEq for BoundaryKind
Auto Trait Implementations§
impl Freeze for BoundaryKind
impl RefUnwindSafe for BoundaryKind
impl Send for BoundaryKind
impl Sync for BoundaryKind
impl Unpin for BoundaryKind
impl UnsafeUnpin for BoundaryKind
impl UnwindSafe for BoundaryKind
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