pub struct PagedGraphServicePrincipals {
pub continuation_token: Vec<String>,
pub graph_service_principals: Vec<GraphServicePrincipal>,
}
Expand description
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 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 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
source§impl PartialEq for PagedGraphServicePrincipals
impl PartialEq for PagedGraphServicePrincipals
source§fn eq(&self, other: &PagedGraphServicePrincipals) -> bool
fn eq(&self, other: &PagedGraphServicePrincipals) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PagedGraphServicePrincipals
Auto Trait Implementations§
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