pub struct Tokenizer<'a> {
pub username: &'a str,
pub sess_id: &'a str,
pub sess_version: &'a str,
pub nettype: &'a str,
pub addrtype: &'a str,
pub unicast_address: &'a str,
}
Expand description
The origin line (o=
) tokenizer. This is low level stuff and you shouldn’t interact directly
with it, unless you know what you are doing.
Fields§
§username: &'a str
§sess_id: &'a str
§sess_version: &'a str
§nettype: &'a str
§addrtype: &'a str
§unicast_address: &'a str
Implementations§
Trait Implementations§
impl<'a> Eq for Tokenizer<'a>
impl<'a> StructuralPartialEq for Tokenizer<'a>
Auto Trait Implementations§
impl<'a> Freeze for Tokenizer<'a>
impl<'a> RefUnwindSafe for Tokenizer<'a>
impl<'a> Send for Tokenizer<'a>
impl<'a> Sync for Tokenizer<'a>
impl<'a> Unpin for Tokenizer<'a>
impl<'a> UnwindSafe for Tokenizer<'a>
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