pub struct AnalyticsDetails {
pub analytics_property: Option<AnalyticsProperty>,
pub stream_mappings: Option<Vec<StreamMapping>>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get analytics details projects (response)
Fields§
§analytics_property: Option<AnalyticsProperty>The Analytics Property object associated with the specified FirebaseProject. This object contains the details of the Google Analytics property associated with the Project.
stream_mappings: Option<Vec<StreamMapping>>- For
AndroidAppsandIosApps: a map ofapptostreamIdfor each Firebase App in the specifiedFirebaseProject. EachappandstreamIdappears only once. - ForWebApps: a map ofapptostreamIdandmeasurementIdfor eachWebAppin the specifiedFirebaseProject. Eachapp,streamId, andmeasurementIdappears only once.
Trait Implementations§
Source§impl Clone for AnalyticsDetails
impl Clone for AnalyticsDetails
Source§fn clone(&self) -> AnalyticsDetails
fn clone(&self) -> AnalyticsDetails
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 AnalyticsDetails
impl Debug for AnalyticsDetails
Source§impl Default for AnalyticsDetails
impl Default for AnalyticsDetails
Source§fn default() -> AnalyticsDetails
fn default() -> AnalyticsDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsDetails
impl<'de> Deserialize<'de> for AnalyticsDetails
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 Serialize for AnalyticsDetails
impl Serialize for AnalyticsDetails
impl ResponseResult for AnalyticsDetails
Auto Trait Implementations§
impl Freeze for AnalyticsDetails
impl RefUnwindSafe for AnalyticsDetails
impl Send for AnalyticsDetails
impl Sync for AnalyticsDetails
impl Unpin for AnalyticsDetails
impl UnwindSafe for AnalyticsDetails
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