pub struct LogInsightsDimensions {
pub url: Option<String>,
pub country: Option<String>,
pub status_code: Option<String>,
pub response: Option<String>,
pub browser: Option<String>,
pub content_type: Option<String>,
pub device: Option<String>,
pub os: Option<String>,
}Fields§
§url: Option<String>The URL path for this dimension.
country: Option<String>The client’s country for this dimension.
status_code: Option<String>The HTTP response code for this dimension.
response: Option<String>The HTTP reason phrase for this dimension.
browser: Option<String>The client’s browser for this dimension.
content_type: Option<String>The content type of the response for this dimension.
device: Option<String>The client’s device type for this dimension.
os: Option<String>The client’s operating system for this dimension.
Implementations§
Source§impl LogInsightsDimensions
impl LogInsightsDimensions
pub fn new() -> LogInsightsDimensions
Trait Implementations§
Source§impl Clone for LogInsightsDimensions
impl Clone for LogInsightsDimensions
Source§fn clone(&self) -> LogInsightsDimensions
fn clone(&self) -> LogInsightsDimensions
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 Debug for LogInsightsDimensions
impl Debug for LogInsightsDimensions
Source§impl Default for LogInsightsDimensions
impl Default for LogInsightsDimensions
Source§fn default() -> LogInsightsDimensions
fn default() -> LogInsightsDimensions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogInsightsDimensions
impl<'de> Deserialize<'de> for LogInsightsDimensions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LogInsightsDimensions
impl PartialEq for LogInsightsDimensions
Source§impl Serialize for LogInsightsDimensions
impl Serialize for LogInsightsDimensions
impl StructuralPartialEq for LogInsightsDimensions
Auto Trait Implementations§
impl Freeze for LogInsightsDimensions
impl RefUnwindSafe for LogInsightsDimensions
impl Send for LogInsightsDimensions
impl Sync for LogInsightsDimensions
impl Unpin for LogInsightsDimensions
impl UnwindSafe for LogInsightsDimensions
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