pub struct PaginatedWebAuthnDeviceList {
pub pagination: Box<Pagination>,
pub results: Vec<WebAuthnDevice>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<WebAuthnDevice>
Implementations§
Source§impl PaginatedWebAuthnDeviceList
impl PaginatedWebAuthnDeviceList
pub fn new( pagination: Pagination, results: Vec<WebAuthnDevice>, ) -> PaginatedWebAuthnDeviceList
Trait Implementations§
Source§impl Clone for PaginatedWebAuthnDeviceList
impl Clone for PaginatedWebAuthnDeviceList
Source§fn clone(&self) -> PaginatedWebAuthnDeviceList
fn clone(&self) -> PaginatedWebAuthnDeviceList
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 PaginatedWebAuthnDeviceList
impl Debug for PaginatedWebAuthnDeviceList
Source§impl Default for PaginatedWebAuthnDeviceList
impl Default for PaginatedWebAuthnDeviceList
Source§fn default() -> PaginatedWebAuthnDeviceList
fn default() -> PaginatedWebAuthnDeviceList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedWebAuthnDeviceList
impl<'de> Deserialize<'de> for PaginatedWebAuthnDeviceList
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 PaginatedWebAuthnDeviceList
Auto Trait Implementations§
impl Freeze for PaginatedWebAuthnDeviceList
impl RefUnwindSafe for PaginatedWebAuthnDeviceList
impl Send for PaginatedWebAuthnDeviceList
impl Sync for PaginatedWebAuthnDeviceList
impl Unpin for PaginatedWebAuthnDeviceList
impl UnwindSafe for PaginatedWebAuthnDeviceList
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