Struct azure_devops_rust_api::tokens::models::PagedPatTokens
source · pub struct PagedPatTokens {
pub continuation_token: Option<String>,
pub pat_tokens: Vec<PatToken>,
}
Expand description
Returned by the List method; contains a list of personal access tokens (PATs) and the continuation token to get the next page of results
Fields§
§continuation_token: Option<String>
Used to access the next page of results in successive API calls to list personal access tokens (PATs)
pat_tokens: Vec<PatToken>
The list of personal access tokens (PATs)
Implementations§
Trait Implementations§
source§impl Clone for PagedPatTokens
impl Clone for PagedPatTokens
source§fn clone(&self) -> PagedPatTokens
fn clone(&self) -> PagedPatTokens
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 PagedPatTokens
impl Debug for PagedPatTokens
source§impl Default for PagedPatTokens
impl Default for PagedPatTokens
source§fn default() -> PagedPatTokens
fn default() -> PagedPatTokens
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PagedPatTokens
impl<'de> Deserialize<'de> for PagedPatTokens
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 PagedPatTokens
impl PartialEq for PagedPatTokens
source§fn eq(&self, other: &PagedPatTokens) -> bool
fn eq(&self, other: &PagedPatTokens) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PagedPatTokens
impl Serialize for PagedPatTokens
impl StructuralPartialEq for PagedPatTokens
Auto Trait Implementations§
impl RefUnwindSafe for PagedPatTokens
impl Send for PagedPatTokens
impl Sync for PagedPatTokens
impl Unpin for PagedPatTokens
impl UnwindSafe for PagedPatTokens
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