pub struct PagedGraphServicePrincipals {
pub continuation_token: Vec<String>,
pub graph_service_principals: Vec<GraphServicePrincipal>,
}Fields§
§continuation_token: Vec<String>This will be non-null if there is another page of data. There will never be more than one continuation token returned by a request.
graph_service_principals: Vec<GraphServicePrincipal>The enumerable list of service principals found within a page.
Implementations§
Trait Implementations§
Source§impl Clone for PagedGraphServicePrincipals
impl Clone for PagedGraphServicePrincipals
Source§fn clone(&self) -> PagedGraphServicePrincipals
fn clone(&self) -> PagedGraphServicePrincipals
Returns a duplicate 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 Debug for PagedGraphServicePrincipals
impl Debug for PagedGraphServicePrincipals
Source§impl Default for PagedGraphServicePrincipals
impl Default for PagedGraphServicePrincipals
Source§fn default() -> PagedGraphServicePrincipals
fn default() -> PagedGraphServicePrincipals
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PagedGraphServicePrincipals
impl<'de> Deserialize<'de> for PagedGraphServicePrincipals
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 StructuralPartialEq for PagedGraphServicePrincipals
Auto Trait Implementations§
impl Freeze for PagedGraphServicePrincipals
impl RefUnwindSafe for PagedGraphServicePrincipals
impl Send for PagedGraphServicePrincipals
impl Sync for PagedGraphServicePrincipals
impl Unpin for PagedGraphServicePrincipals
impl UnwindSafe for PagedGraphServicePrincipals
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more