pub struct NodesGetIdentityResponse {
pub data: Box<NodesGetIdentityResponseData>,
pub total: Option<i32>,
pub changes: Option<Value>,
}Fields§
§data: Box<NodesGetIdentityResponseData>§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 NodesGetIdentityResponse
impl NodesGetIdentityResponse
pub fn new(data: NodesGetIdentityResponseData) -> NodesGetIdentityResponse
Trait Implementations§
Source§impl Clone for NodesGetIdentityResponse
impl Clone for NodesGetIdentityResponse
Source§fn clone(&self) -> NodesGetIdentityResponse
fn clone(&self) -> NodesGetIdentityResponse
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 Debug for NodesGetIdentityResponse
impl Debug for NodesGetIdentityResponse
Source§impl Default for NodesGetIdentityResponse
impl Default for NodesGetIdentityResponse
Source§fn default() -> NodesGetIdentityResponse
fn default() -> NodesGetIdentityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesGetIdentityResponse
impl<'de> Deserialize<'de> for NodesGetIdentityResponse
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 NodesGetIdentityResponse
impl PartialEq for NodesGetIdentityResponse
Source§fn eq(&self, other: &NodesGetIdentityResponse) -> bool
fn eq(&self, other: &NodesGetIdentityResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodesGetIdentityResponse
impl Serialize for NodesGetIdentityResponse
impl StructuralPartialEq for NodesGetIdentityResponse
Auto Trait Implementations§
impl Freeze for NodesGetIdentityResponse
impl RefUnwindSafe for NodesGetIdentityResponse
impl Send for NodesGetIdentityResponse
impl Sync for NodesGetIdentityResponse
impl Unpin for NodesGetIdentityResponse
impl UnsafeUnpin for NodesGetIdentityResponse
impl UnwindSafe for NodesGetIdentityResponse
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