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