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