pub struct ConnectionProperties<'a> {
pub os: Cow<'a, str>,
pub browser: Cow<'a, str>,
pub device: Cow<'a, str>,
}Expand description
Connection properties sent with Identify.
Fields§
§os: Cow<'a, str>Operating system.
browser: Cow<'a, str>Library name.
device: Cow<'a, str>Library name (again, for device).
Trait Implementations§
Source§impl<'a> Clone for ConnectionProperties<'a>
impl<'a> Clone for ConnectionProperties<'a>
Source§fn clone(&self) -> ConnectionProperties<'a>
fn clone(&self) -> ConnectionProperties<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ConnectionProperties<'a>
impl<'a> Debug for ConnectionProperties<'a>
Source§impl<'a> Default for ConnectionProperties<'a>
impl<'a> Default for ConnectionProperties<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConnectionProperties<'a>
impl<'a> RefUnwindSafe for ConnectionProperties<'a>
impl<'a> Send for ConnectionProperties<'a>
impl<'a> Sync for ConnectionProperties<'a>
impl<'a> Unpin for ConnectionProperties<'a>
impl<'a> UnwindSafe for ConnectionProperties<'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