pub struct StorageObjectList {
pub objects: Vec<StorageObject>,
pub next_cursor: Option<String>,
}Fields§
§objects: Vec<StorageObject>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for StorageObjectList
impl Clone for StorageObjectList
Source§fn clone(&self) -> StorageObjectList
fn clone(&self) -> StorageObjectList
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 StorageObjectList
impl Debug for StorageObjectList
Source§impl<'de> Deserialize<'de> for StorageObjectList
impl<'de> Deserialize<'de> for StorageObjectList
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
impl Eq for StorageObjectList
Source§impl PartialEq for StorageObjectList
impl PartialEq for StorageObjectList
Source§impl Serialize for StorageObjectList
impl Serialize for StorageObjectList
impl StructuralPartialEq for StorageObjectList
Auto Trait Implementations§
impl Freeze for StorageObjectList
impl RefUnwindSafe for StorageObjectList
impl Send for StorageObjectList
impl Sync for StorageObjectList
impl Unpin for StorageObjectList
impl UnsafeUnpin for StorageObjectList
impl UnwindSafe for StorageObjectList
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