pub struct UserAgentParser {
pub regex: Regex,
pub family: Option<String>,
pub major: Option<String>,
pub minor: Option<String>,
pub patch: Option<String>,
}
Fields§
§regex: Regex
§family: Option<String>
§major: Option<String>
§minor: Option<String>
§patch: Option<String>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for UserAgentParser
impl !RefUnwindSafe for UserAgentParser
impl Send for UserAgentParser
impl Sync for UserAgentParser
impl Unpin for UserAgentParser
impl !UnwindSafe for UserAgentParser
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