pub struct Builder<T>(/* private fields */);Expand description
A builder for EventLogV2
Implementations§
Source§impl Builder<EventNameStage>
impl Builder<EventNameStage>
Source§impl Builder<Complete>
impl Builder<Complete>
Sourcepub fn event_name(self, event_name: impl Into<String>) -> Self
pub fn event_name(self, event_name: impl Into<String>) -> Self
Sets the event_name field.
Sourcepub fn insert_values(
self,
key: impl Into<String>,
value: impl Serialize,
) -> Self
pub fn insert_values( self, key: impl Into<String>, value: impl Serialize, ) -> Self
Adds an entry to the values field.
Sourcepub fn values(
self,
values: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>,
) -> Self
pub fn values( self, values: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>, ) -> Self
Sets the values field.
Sourcepub fn extend_values(
self,
values: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>,
) -> Self
pub fn extend_values( self, values: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>, ) -> Self
Adds entries to the values field.
Sourcepub fn org_id(self, org_id: impl Into<Option<OrganizationId>>) -> Self
pub fn org_id(self, org_id: impl Into<Option<OrganizationId>>) -> Self
Sets the org_id field.
Sourcepub fn insert_unsafe_params(
self,
key: impl Into<String>,
value: impl Serialize,
) -> Self
pub fn insert_unsafe_params( self, key: impl Into<String>, value: impl Serialize, ) -> Self
Adds an entry to the unsafe_params field.
Sourcepub fn unsafe_params(
self,
unsafe_params: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>,
) -> Self
pub fn unsafe_params( self, unsafe_params: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>, ) -> Self
Sets the unsafe_params field.
Sourcepub fn extend_unsafe_params(
self,
unsafe_params: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>,
) -> Self
pub fn extend_unsafe_params( self, unsafe_params: impl IntoIterator<Item = (impl Into<String>, impl Serialize)>, ) -> Self
Adds entries to the unsafe_params field.
Adds an entry to the tags field.
Sets the tags field.
Adds entries to the tags field.
Sourcepub fn build(self) -> EventLogV2
pub fn build(self) -> EventLogV2
Consumes the builder, returning a EventLogV2.
Trait Implementations§
Source§impl From<EventLogV2> for Builder<Complete>
impl From<EventLogV2> for Builder<Complete>
Source§fn from(v: EventLogV2) -> Self
fn from(v: EventLogV2) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for Builder<T>where
T: Freeze,
impl<T> RefUnwindSafe for Builder<T>where
T: RefUnwindSafe,
impl<T> Send for Builder<T>where
T: Send,
impl<T> Sync for Builder<T>where
T: Sync,
impl<T> Unpin for Builder<T>where
T: Unpin,
impl<T> UnwindSafe for Builder<T>where
T: UnwindSafe,
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