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