pub struct GetPhonebookResponsePhonebook {
pub phonebook: Option<u64>,
pub speed_dial: Option<String>,
pub name: Option<String>,
pub number: Option<u64>,
pub callerid: Option<u64>,
pub note: Option<String>,
pub group: Option<u64>,
pub group_name: Option<String>,
}Expand description
Response body for Client::get_phonebook (wire method getPhonebook).
Fields§
§phonebook: Option<u64>§speed_dial: Option<String>§name: Option<String>§number: Option<u64>§callerid: Option<u64>§note: Option<String>§group: Option<u64>§group_name: Option<String>Trait Implementations§
Source§impl Clone for GetPhonebookResponsePhonebook
impl Clone for GetPhonebookResponsePhonebook
Source§fn clone(&self) -> GetPhonebookResponsePhonebook
fn clone(&self) -> GetPhonebookResponsePhonebook
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 Default for GetPhonebookResponsePhonebook
impl Default for GetPhonebookResponsePhonebook
Source§fn default() -> GetPhonebookResponsePhonebook
fn default() -> GetPhonebookResponsePhonebook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPhonebookResponsePhonebook
impl<'de> Deserialize<'de> for GetPhonebookResponsePhonebook
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetPhonebookResponsePhonebook
impl RefUnwindSafe for GetPhonebookResponsePhonebook
impl Send for GetPhonebookResponsePhonebook
impl Sync for GetPhonebookResponsePhonebook
impl Unpin for GetPhonebookResponsePhonebook
impl UnsafeUnpin for GetPhonebookResponsePhonebook
impl UnwindSafe for GetPhonebookResponsePhonebook
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