pub struct TrafficSource {
pub traffic_source_id: Option<String>,
pub traffic_sub_id: Option<String>,
}Expand description
Source of traffic for the current request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§traffic_source_id: Option<String>Identifier to indicate where the traffic comes from. An identifier has multiple letters created by a team which redirected the traffic to us.
traffic_sub_id: Option<String>Second level identifier to indicate where the traffic comes from. An identifier has multiple letters created by a team which redirected the traffic to us.
Trait Implementations§
Source§impl Clone for TrafficSource
impl Clone for TrafficSource
Source§fn clone(&self) -> TrafficSource
fn clone(&self) -> TrafficSource
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 TrafficSource
impl Debug for TrafficSource
Source§impl Default for TrafficSource
impl Default for TrafficSource
Source§fn default() -> TrafficSource
fn default() -> TrafficSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrafficSource
impl<'de> Deserialize<'de> for TrafficSource
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 TrafficSource
impl Serialize for TrafficSource
impl Part for TrafficSource
Auto Trait Implementations§
impl Freeze for TrafficSource
impl RefUnwindSafe for TrafficSource
impl Send for TrafficSource
impl Sync for TrafficSource
impl Unpin for TrafficSource
impl UnwindSafe for TrafficSource
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