[][src]Struct twilight_gateway::shard::raw_message::CloseFrame

#[non_exhaustive]pub struct CloseFrame<'a> {
    pub code: u16,
    pub reason: Cow<'a, str>,
}

Information about a close message, if any.

A close frame can be constructed via its From implementations.

Fields (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.
code: u16

Reason for the close.

reason: Cow<'a, str>

Textual representation of the reason the connection is being closed.

Trait Implementations

impl<'a> Clone for CloseFrame<'a>[src]

impl<'a> Debug for CloseFrame<'a>[src]

impl<'a> Eq for CloseFrame<'a>[src]

impl<'a, T: Into<Cow<'a, str>>> From<(u16, T)> for CloseFrame<'a>[src]

Construct a close frame from a code and a reason why.

Examples

use twilight_gateway::shard::raw_message::CloseFrame;

let frame = CloseFrame::from((1000, "reason here"));

assert_eq!(1000, frame.code);
assert_eq!("reason here", frame.reason);

impl<'a> PartialEq<CloseFrame<'a>> for CloseFrame<'a>[src]

impl<'a> StructuralEq for CloseFrame<'a>[src]

impl<'a> StructuralPartialEq for CloseFrame<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CloseFrame<'a>[src]

impl<'a> Send for CloseFrame<'a>[src]

impl<'a> Sync for CloseFrame<'a>[src]

impl<'a> Unpin for CloseFrame<'a>[src]

impl<'a> UnwindSafe for CloseFrame<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,