pub struct MsgraphContactsListResponse {
pub value: Vec<MsgraphContact>,
pub next_link: Option<String>,
}Expand description
One page of contacts (value plus the OData paging link).
Fields§
§value: Vec<MsgraphContact>The contacts of the page.
next_link: Option<String>The URL of the next page, when one exists.
Trait Implementations§
Source§impl Clone for MsgraphContactsListResponse
impl Clone for MsgraphContactsListResponse
Source§fn clone(&self) -> MsgraphContactsListResponse
fn clone(&self) -> MsgraphContactsListResponse
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 MsgraphContactsListResponse
impl Debug for MsgraphContactsListResponse
Source§impl Default for MsgraphContactsListResponse
impl Default for MsgraphContactsListResponse
Source§fn default() -> MsgraphContactsListResponse
fn default() -> MsgraphContactsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphContactsListResponse
impl<'de> Deserialize<'de> for MsgraphContactsListResponse
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
impl Eq for MsgraphContactsListResponse
impl StructuralPartialEq for MsgraphContactsListResponse
Auto Trait Implementations§
impl Freeze for MsgraphContactsListResponse
impl RefUnwindSafe for MsgraphContactsListResponse
impl Send for MsgraphContactsListResponse
impl Sync for MsgraphContactsListResponse
impl Unpin for MsgraphContactsListResponse
impl UnsafeUnpin for MsgraphContactsListResponse
impl UnwindSafe for MsgraphContactsListResponse
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