pub struct ProfileFilterLink {
pub filter_ref: Option<FilterRef>,
pub id: Option<String>,
pub kind: Option<String>,
pub profile_ref: Option<ProfileRef>,
pub rank: Option<i32>,
pub self_link: Option<String>,
}
Expand description
JSON template for an Analytics profile filter link.
§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).
- profile filter links get management (response)
- profile filter links insert management (request|response)
- profile filter links patch management (request|response)
- profile filter links update management (request|response)
Fields§
§filter_ref: Option<FilterRef>
Filter for this link.
id: Option<String>
Profile filter link ID.
kind: Option<String>
Resource type for Analytics filter.
profile_ref: Option<ProfileRef>
View (Profile) for this link.
rank: Option<i32>
The rank of this profile filter link relative to the other filters linked to the same profile. For readonly (i.e., list and get) operations, the rank always starts at 1. For write (i.e., create, update, or delete) operations, you may specify a value between 0 and 255 inclusively, [0, 255]. In order to insert a link at the end of the list, either don’t specify a rank or set a rank to a number greater than the largest rank in the list. In order to insert a link to the beginning of the list specify a rank that is less than or equal to 1. The new link will move all existing filters with the same or lower rank down the list. After the link is inserted/updated/deleted all profile filter links will be renumbered starting at 1.
self_link: Option<String>
Link for this profile filter link.
Trait Implementations§
Source§impl Clone for ProfileFilterLink
impl Clone for ProfileFilterLink
Source§fn clone(&self) -> ProfileFilterLink
fn clone(&self) -> ProfileFilterLink
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ProfileFilterLink
impl Debug for ProfileFilterLink
Source§impl Default for ProfileFilterLink
impl Default for ProfileFilterLink
Source§fn default() -> ProfileFilterLink
fn default() -> ProfileFilterLink
Source§impl<'de> Deserialize<'de> for ProfileFilterLink
impl<'de> Deserialize<'de> for ProfileFilterLink
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>,
Source§impl Serialize for ProfileFilterLink
impl Serialize for ProfileFilterLink
impl RequestValue for ProfileFilterLink
impl ResponseResult for ProfileFilterLink
Auto Trait Implementations§
impl Freeze for ProfileFilterLink
impl RefUnwindSafe for ProfileFilterLink
impl Send for ProfileFilterLink
impl Sync for ProfileFilterLink
impl Unpin for ProfileFilterLink
impl UnwindSafe for ProfileFilterLink
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more