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