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