pub struct Tdiscarded {
pub id: u32,
pub msg: String,
}Expand description
Representation of a mux Tdiscarded frame.
A Tdiscarded frame is a marker message alerting the server that the
client has discarded the Tdispatch issued with the associated id. This
does not free the server from the obligation of replying to the origional
request.
Fields§
§id: u32Stream id of the discarded Tdispatch request.
msg: StringReason for discarding the request.
Trait Implementations§
Source§impl Debug for Tdiscarded
impl Debug for Tdiscarded
Source§impl PartialEq for Tdiscarded
impl PartialEq for Tdiscarded
impl Eq for Tdiscarded
impl StructuralPartialEq for Tdiscarded
Auto Trait Implementations§
impl Freeze for Tdiscarded
impl RefUnwindSafe for Tdiscarded
impl Send for Tdiscarded
impl Sync for Tdiscarded
impl Unpin for Tdiscarded
impl UnwindSafe for Tdiscarded
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