[−][src]Struct tungstenite::protocol::frame::FrameSocket
A reader and writer for WebSocket frames.
Methods
impl<Stream> FrameSocket<Stream>
[src]
pub fn new(stream: Stream) -> Self
[src]
Create a new frame socket.
pub fn from_partially_read(stream: Stream, part: Vec<u8>) -> Self
[src]
Create a new frame socket from partially read data.
pub fn into_inner(self) -> (Stream, Vec<u8>)
[src]
Extract a stream from the socket.
pub fn get_ref(&self) -> &Stream
[src]
Returns a shared reference to the inner stream.
pub fn get_mut(&mut self) -> &mut Stream
[src]
Returns a mutable reference to the inner stream.
impl<Stream> FrameSocket<Stream> where
Stream: Read,
[src]
Stream: Read,
pub fn read_frame(&mut self, max_size: Option<usize>) -> Result<Option<Frame>>
[src]
Read a frame from stream.
impl<Stream> FrameSocket<Stream> where
Stream: Write,
[src]
Stream: Write,
pub fn write_frame(&mut self, frame: Frame) -> Result<()>
[src]
Write a frame to stream.
This function guarantees that the frame is queued regardless of any errors. There is no need to resend the frame. In order to handle WouldBlock or Incomplete, call write_pending() afterwards.
pub fn write_pending(&mut self) -> Result<()>
[src]
Complete pending write, if any.
Trait Implementations
impl<Stream: Debug> Debug for FrameSocket<Stream>
[src]
Auto Trait Implementations
impl<Stream> Send for FrameSocket<Stream> where
Stream: Send,
Stream: Send,
impl<Stream> Sync for FrameSocket<Stream> where
Stream: Sync,
Stream: Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Same for T
type Output = T
Should always be Self