#[non_exhaustive]pub struct AssetList {
pub asset_ids: Vec<String>,
/* private fields */
}Expand description
Lists the asset IDs of all assets.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.asset_ids: Vec<String>Required. A list of asset IDs
Implementations§
Trait Implementations§
impl StructuralPartialEq for AssetList
Auto Trait Implementations§
impl Freeze for AssetList
impl RefUnwindSafe for AssetList
impl Send for AssetList
impl Sync for AssetList
impl Unpin for AssetList
impl UnsafeUnpin for AssetList
impl UnwindSafe for AssetList
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