pub struct E911UpdateParams {
pub did: Option<String>,
pub full_name: Option<String>,
pub street_number: Option<i64>,
pub street_name: Option<String>,
pub address_type: Option<String>,
pub address_number: Option<i64>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub zip: Option<String>,
pub language: Option<String>,
pub other_info: Option<String>,
}Expand description
Parameters for Client::e911_update (wire method e911Update).
Fields§
§did: Option<String>§full_name: Option<String>§street_number: Option<i64>§street_name: Option<String>§address_type: Option<String>§address_number: Option<i64>§city: Option<String>§state: Option<String>§country: Option<String>§zip: Option<String>§language: Option<String>§other_info: Option<String>Trait Implementations§
Source§impl Clone for E911UpdateParams
impl Clone for E911UpdateParams
Source§fn clone(&self) -> E911UpdateParams
fn clone(&self) -> E911UpdateParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 E911UpdateParams
impl Debug for E911UpdateParams
Source§impl Default for E911UpdateParams
impl Default for E911UpdateParams
Source§fn default() -> E911UpdateParams
fn default() -> E911UpdateParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for E911UpdateParams
impl RefUnwindSafe for E911UpdateParams
impl Send for E911UpdateParams
impl Sync for E911UpdateParams
impl Unpin for E911UpdateParams
impl UnsafeUnpin for E911UpdateParams
impl UnwindSafe for E911UpdateParams
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