#[non_exhaustive]pub struct UpdatePhoneNumberRequestItemBuilder { /* private fields */ }Expand description
A builder for UpdatePhoneNumberRequestItem.
Implementations§
source§impl UpdatePhoneNumberRequestItemBuilder
impl UpdatePhoneNumberRequestItemBuilder
sourcepub fn phone_number_id(self, input: impl Into<String>) -> Self
pub fn phone_number_id(self, input: impl Into<String>) -> Self
The phone number ID to update.
This field is required.sourcepub fn set_phone_number_id(self, input: Option<String>) -> Self
pub fn set_phone_number_id(self, input: Option<String>) -> Self
The phone number ID to update.
sourcepub fn get_phone_number_id(&self) -> &Option<String>
pub fn get_phone_number_id(&self) -> &Option<String>
The phone number ID to update.
sourcepub fn product_type(self, input: PhoneNumberProductType) -> Self
pub fn product_type(self, input: PhoneNumberProductType) -> Self
The product type to update.
sourcepub fn set_product_type(self, input: Option<PhoneNumberProductType>) -> Self
pub fn set_product_type(self, input: Option<PhoneNumberProductType>) -> Self
The product type to update.
sourcepub fn get_product_type(&self) -> &Option<PhoneNumberProductType>
pub fn get_product_type(&self) -> &Option<PhoneNumberProductType>
The product type to update.
sourcepub fn calling_name(self, input: impl Into<String>) -> Self
pub fn calling_name(self, input: impl Into<String>) -> Self
The outbound calling name to update.
sourcepub fn set_calling_name(self, input: Option<String>) -> Self
pub fn set_calling_name(self, input: Option<String>) -> Self
The outbound calling name to update.
sourcepub fn get_calling_name(&self) -> &Option<String>
pub fn get_calling_name(&self) -> &Option<String>
The outbound calling name to update.
sourcepub fn build(self) -> Result<UpdatePhoneNumberRequestItem, BuildError>
pub fn build(self) -> Result<UpdatePhoneNumberRequestItem, BuildError>
Consumes the builder and constructs a UpdatePhoneNumberRequestItem.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for UpdatePhoneNumberRequestItemBuilder
impl Clone for UpdatePhoneNumberRequestItemBuilder
source§fn clone(&self) -> UpdatePhoneNumberRequestItemBuilder
fn clone(&self) -> UpdatePhoneNumberRequestItemBuilder
Returns a copy 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 Default for UpdatePhoneNumberRequestItemBuilder
impl Default for UpdatePhoneNumberRequestItemBuilder
source§fn default() -> UpdatePhoneNumberRequestItemBuilder
fn default() -> UpdatePhoneNumberRequestItemBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdatePhoneNumberRequestItemBuilder
impl PartialEq for UpdatePhoneNumberRequestItemBuilder
source§fn eq(&self, other: &UpdatePhoneNumberRequestItemBuilder) -> bool
fn eq(&self, other: &UpdatePhoneNumberRequestItemBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdatePhoneNumberRequestItemBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdatePhoneNumberRequestItemBuilder
impl Send for UpdatePhoneNumberRequestItemBuilder
impl Sync for UpdatePhoneNumberRequestItemBuilder
impl Unpin for UpdatePhoneNumberRequestItemBuilder
impl UnwindSafe for UpdatePhoneNumberRequestItemBuilder
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
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>
Creates a shared type from an unshared type.