pub struct MemoryCollection {
pub base: ResourceCollection,
pub members: Vec<NavProperty<Memory>>,
}Expand description
The collection of Memory resource instances.
This resource shall represent a resource collection of Memory instances for a Redfish
implementation.
Fields§
§base: ResourceCollectionBase type
members: Vec<NavProperty<Memory>>The members of this collection.
This property shall contain an array of links to the members of this collection.
Trait Implementations§
Source§impl Debug for MemoryCollection
impl Debug for MemoryCollection
Source§impl<'de> Deserialize<'de> for MemoryCollection
impl<'de> Deserialize<'de> for MemoryCollection
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 EntityTypeRef for MemoryCollection
impl EntityTypeRef for MemoryCollection
Source§impl Expandable for MemoryCollection
impl Expandable for MemoryCollection
impl Send for MemoryCollection
SAFETY: All generated data types are Send
impl Sync for MemoryCollection
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for MemoryCollection
impl RefUnwindSafe for MemoryCollection
impl Unpin for MemoryCollection
impl UnsafeUnpin for MemoryCollection
impl UnwindSafe for MemoryCollection
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