pub struct UserAgent {
pub id: Uuid,
pub software: Option<String>,
pub device: Option<String>,
}
Expand description
Optional client software information
Fields§
§id: Uuid
Random, unique identifier for the client
software: Option<String>
Name of the client software
device: Option<String>
Name of the client device (eg. phone/laptop)
Trait Implementations§
impl StructuralPartialEq for UserAgent
Auto Trait Implementations§
impl Freeze for UserAgent
impl RefUnwindSafe for UserAgent
impl Send for UserAgent
impl Sync for UserAgent
impl Unpin for UserAgent
impl UnwindSafe for UserAgent
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