pub struct StorageListing {
pub entries: Vec<StorageEntry>,
}Expand description
The current contents of a storage item at the moment a step starts.
Fields§
§entries: Vec<StorageEntry>Files currently present. For folder-typed storage this enumerates the folder contents; for file-typed storage it contains a single entry (or is empty when the file hasn’t been created yet).
Trait Implementations§
Source§impl Clone for StorageListing
impl Clone for StorageListing
Source§fn clone(&self) -> StorageListing
fn clone(&self) -> StorageListing
Returns a duplicate of the value. Read more
1.0.0 · 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 StorageListing
impl Debug for StorageListing
Source§impl Default for StorageListing
impl Default for StorageListing
Source§fn default() -> StorageListing
fn default() -> StorageListing
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StorageListing
impl RefUnwindSafe for StorageListing
impl Send for StorageListing
impl Sync for StorageListing
impl Unpin for StorageListing
impl UnsafeUnpin for StorageListing
impl UnwindSafe for StorageListing
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