pub struct ConfigVerifyDeleteVerifyResponse {
pub data: Option<Value>,
pub total: Option<i32>,
pub changes: Option<Value>,
}Fields§
§data: Option<Value>§total: Option<i32>Optional total count, present for paginated list responses.
changes: Option<Value>Optional change summary returned by some PUT operations (one entry per modified field).
Implementations§
Source§impl ConfigVerifyDeleteVerifyResponse
impl ConfigVerifyDeleteVerifyResponse
pub fn new(data: Option<Value>) -> ConfigVerifyDeleteVerifyResponse
Trait Implementations§
Source§impl Clone for ConfigVerifyDeleteVerifyResponse
impl Clone for ConfigVerifyDeleteVerifyResponse
Source§fn clone(&self) -> ConfigVerifyDeleteVerifyResponse
fn clone(&self) -> ConfigVerifyDeleteVerifyResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ConfigVerifyDeleteVerifyResponse
impl Default for ConfigVerifyDeleteVerifyResponse
Source§fn default() -> ConfigVerifyDeleteVerifyResponse
fn default() -> ConfigVerifyDeleteVerifyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigVerifyDeleteVerifyResponse
impl<'de> Deserialize<'de> for ConfigVerifyDeleteVerifyResponse
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 ConfigVerifyDeleteVerifyResponse
impl PartialEq for ConfigVerifyDeleteVerifyResponse
Source§fn eq(&self, other: &ConfigVerifyDeleteVerifyResponse) -> bool
fn eq(&self, other: &ConfigVerifyDeleteVerifyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigVerifyDeleteVerifyResponse
Auto Trait Implementations§
impl Freeze for ConfigVerifyDeleteVerifyResponse
impl RefUnwindSafe for ConfigVerifyDeleteVerifyResponse
impl Send for ConfigVerifyDeleteVerifyResponse
impl Sync for ConfigVerifyDeleteVerifyResponse
impl Unpin for ConfigVerifyDeleteVerifyResponse
impl UnsafeUnpin for ConfigVerifyDeleteVerifyResponse
impl UnwindSafe for ConfigVerifyDeleteVerifyResponse
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