#[non_exhaustive]pub struct EventTypeSummaryBuilder { /* private fields */ }
Expand description
A builder for EventTypeSummary
.
Implementations§
source§impl EventTypeSummaryBuilder
impl EventTypeSummaryBuilder
sourcepub fn event_type_id(self, input: impl Into<String>) -> Self
pub fn event_type_id(self, input: impl Into<String>) -> Self
The system-generated ID of the event. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
sourcepub fn set_event_type_id(self, input: Option<String>) -> Self
pub fn set_event_type_id(self, input: Option<String>) -> Self
The system-generated ID of the event. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
sourcepub fn get_event_type_id(&self) -> &Option<String>
pub fn get_event_type_id(&self) -> &Option<String>
The system-generated ID of the event. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
sourcepub fn service_name(self, input: impl Into<String>) -> Self
pub fn service_name(self, input: impl Into<String>) -> Self
The name of the service for which the event applies.
sourcepub fn set_service_name(self, input: Option<String>) -> Self
pub fn set_service_name(self, input: Option<String>) -> Self
The name of the service for which the event applies.
sourcepub fn get_service_name(&self) -> &Option<String>
pub fn get_service_name(&self) -> &Option<String>
The name of the service for which the event applies.
sourcepub fn event_type_name(self, input: impl Into<String>) -> Self
pub fn event_type_name(self, input: impl Into<String>) -> Self
The name of the event.
sourcepub fn set_event_type_name(self, input: Option<String>) -> Self
pub fn set_event_type_name(self, input: Option<String>) -> Self
The name of the event.
sourcepub fn get_event_type_name(&self) -> &Option<String>
pub fn get_event_type_name(&self) -> &Option<String>
The name of the event.
sourcepub fn resource_type(self, input: impl Into<String>) -> Self
pub fn resource_type(self, input: impl Into<String>) -> Self
The resource type of the event.
sourcepub fn set_resource_type(self, input: Option<String>) -> Self
pub fn set_resource_type(self, input: Option<String>) -> Self
The resource type of the event.
sourcepub fn get_resource_type(&self) -> &Option<String>
pub fn get_resource_type(&self) -> &Option<String>
The resource type of the event.
sourcepub fn build(self) -> EventTypeSummary
pub fn build(self) -> EventTypeSummary
Consumes the builder and constructs a EventTypeSummary
.
Trait Implementations§
source§impl Clone for EventTypeSummaryBuilder
impl Clone for EventTypeSummaryBuilder
source§fn clone(&self) -> EventTypeSummaryBuilder
fn clone(&self) -> EventTypeSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EventTypeSummaryBuilder
impl Debug for EventTypeSummaryBuilder
source§impl Default for EventTypeSummaryBuilder
impl Default for EventTypeSummaryBuilder
source§fn default() -> EventTypeSummaryBuilder
fn default() -> EventTypeSummaryBuilder
source§impl PartialEq for EventTypeSummaryBuilder
impl PartialEq for EventTypeSummaryBuilder
impl StructuralPartialEq for EventTypeSummaryBuilder
Auto Trait Implementations§
impl Freeze for EventTypeSummaryBuilder
impl RefUnwindSafe for EventTypeSummaryBuilder
impl Send for EventTypeSummaryBuilder
impl Sync for EventTypeSummaryBuilder
impl Unpin for EventTypeSummaryBuilder
impl UnwindSafe for EventTypeSummaryBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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