pub struct Ike { /* private fields */ }
Expand description
Parser handle.
§Notes
The parser assumes one parser per session as it stores session state. A given session should re-use the same parser as more data is made available and each session should have its own parser.
§FFI SAFETY
This type is not Sync
and this must be considered in FFI uses. This struct may be sent from
one thread to another but it may not be shared between threads without locking access. In C++
this means a std::shared_ptr
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Ike
impl !RefUnwindSafe for Ike
impl Send for Ike
impl !Sync for Ike
impl Unpin for Ike
impl UnwindSafe for Ike
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