pub struct AuthConfigListResponse {
pub items: Vec<AuthConfigInfo>,
pub next_cursor: Option<String>,
pub total_pages: Option<u32>,
pub current_page: Option<u32>,
pub total_items: Option<u32>,
}Expand description
Authentication configuration list response
Fields§
§items: Vec<AuthConfigInfo>List of auth configs
next_cursor: Option<String>Next cursor for pagination
total_pages: Option<u32>Total number of pages
current_page: Option<u32>Current page number
total_items: Option<u32>Total number of items
Trait Implementations§
Source§impl Clone for AuthConfigListResponse
impl Clone for AuthConfigListResponse
Source§fn clone(&self) -> AuthConfigListResponse
fn clone(&self) -> AuthConfigListResponse
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 AuthConfigListResponse
impl Debug for AuthConfigListResponse
Source§impl<'de> Deserialize<'de> for AuthConfigListResponse
impl<'de> Deserialize<'de> for AuthConfigListResponse
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 AuthConfigListResponse
impl RefUnwindSafe for AuthConfigListResponse
impl Send for AuthConfigListResponse
impl Sync for AuthConfigListResponse
impl Unpin for AuthConfigListResponse
impl UnsafeUnpin for AuthConfigListResponse
impl UnwindSafe for AuthConfigListResponse
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