pub struct S101Decoder { /* private fields */ }Expand description
S101 stream decoder.
Implementations§
Source§impl S101Decoder
impl S101Decoder
Sourcepub fn decode_frame(&mut self) -> Result<Option<S101Frame>>
pub fn decode_frame(&mut self) -> Result<Option<S101Frame>>
Try to extract a complete frame.
Sourcepub fn decode_message(&mut self) -> Result<Option<S101Message>>
pub fn decode_message(&mut self) -> Result<Option<S101Message>>
Decode and return a message if available.
Trait Implementations§
Source§impl Debug for S101Decoder
impl Debug for S101Decoder
Source§impl Default for S101Decoder
impl Default for S101Decoder
Source§fn default() -> S101Decoder
fn default() -> S101Decoder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for S101Decoder
impl RefUnwindSafe for S101Decoder
impl Send for S101Decoder
impl Sync for S101Decoder
impl Unpin for S101Decoder
impl UnsafeUnpin for S101Decoder
impl UnwindSafe for S101Decoder
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