pub struct GetValidationKeyResponseDto {
pub data: Vec<ValidationKeyDto>,
pub next: Option<String>,
}
Fields§
§data: Vec<ValidationKeyDto>
Response object for getting external validation keys.
next: Option<String>
The ID of the next page
Implementations§
Source§impl GetValidationKeyResponseDto
impl GetValidationKeyResponseDto
pub fn new(data: Vec<ValidationKeyDto>) -> GetValidationKeyResponseDto
Trait Implementations§
Source§impl Clone for GetValidationKeyResponseDto
impl Clone for GetValidationKeyResponseDto
Source§fn clone(&self) -> GetValidationKeyResponseDto
fn clone(&self) -> GetValidationKeyResponseDto
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 GetValidationKeyResponseDto
impl Debug for GetValidationKeyResponseDto
Source§impl Default for GetValidationKeyResponseDto
impl Default for GetValidationKeyResponseDto
Source§fn default() -> GetValidationKeyResponseDto
fn default() -> GetValidationKeyResponseDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetValidationKeyResponseDto
impl<'de> Deserialize<'de> for GetValidationKeyResponseDto
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 GetValidationKeyResponseDto
Auto Trait Implementations§
impl Freeze for GetValidationKeyResponseDto
impl RefUnwindSafe for GetValidationKeyResponseDto
impl Send for GetValidationKeyResponseDto
impl Sync for GetValidationKeyResponseDto
impl Unpin for GetValidationKeyResponseDto
impl UnwindSafe for GetValidationKeyResponseDto
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