Struct stomp_parser::server::ConnectedFrame
source · pub struct ConnectedFrame {
pub version: VersionValue,
pub heartbeat: Option<HeartBeatValue>,
pub session: Option<SessionValue>,
pub server: Option<ServerValue>,
/* private fields */
}
Expand description
This frame has required headers version
and optional headers heartbeat
,session
,server
.
Fields§
§version: VersionValue
The value of the version
header.
heartbeat: Option<HeartBeatValue>
The value of the heartbeat
header.
session: Option<SessionValue>
The value of the session
header.
server: Option<ServerValue>
The value of the server
header.
Implementations§
Trait Implementations§
source§impl Debug for ConnectedFrame
impl Debug for ConnectedFrame
Auto Trait Implementations§
impl RefUnwindSafe for ConnectedFrame
impl Send for ConnectedFrame
impl Sync for ConnectedFrame
impl Unpin for ConnectedFrame
impl UnwindSafe for ConnectedFrame
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