pub struct AuthConfigListResponse {
pub items: Vec<AuthConfigDetail>,
pub next_cursor: Option<String>,
pub total_pages: u32,
pub current_page: u32,
pub total_items: u32,
}Expand description
Response from listing authentication configurations
Fields§
§items: Vec<AuthConfigDetail>List of auth configs
next_cursor: Option<String>Pagination cursor for next page
total_pages: u32Total number of pages
current_page: u32Current page number
total_items: u32Total 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