pub enum MeasurementProtocolEndpoint {
Collect,
DebugCollect,
Custom(String),
}Expand description
Supported endpoints for the Measurement Protocol.
Variants§
Collect
Production collection endpoint: https://www.google-analytics.com/mp/collect
DebugCollect
Debugging endpoint: https://www.google-analytics.com/debug/mp/collect
Custom(String)
Custom endpoint (primarily for testing).
Trait Implementations§
Source§impl Clone for MeasurementProtocolEndpoint
impl Clone for MeasurementProtocolEndpoint
Source§fn clone(&self) -> MeasurementProtocolEndpoint
fn clone(&self) -> MeasurementProtocolEndpoint
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 moreAuto Trait Implementations§
impl Freeze for MeasurementProtocolEndpoint
impl RefUnwindSafe for MeasurementProtocolEndpoint
impl Send for MeasurementProtocolEndpoint
impl Sync for MeasurementProtocolEndpoint
impl Unpin for MeasurementProtocolEndpoint
impl UnwindSafe for MeasurementProtocolEndpoint
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