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