pub struct FanCollection {
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub description: Option<Description>,
pub members: Vec<IdRef>,
pub members_odata_count: Count,
pub members_odata_next_link: Option<NextLink>,
pub name: Name,
pub oem: Option<Oem>,
}Expand description
The collection of Fan resource instances.
Fields§
§odata_context: Option<Context>§odata_etag: Option<Etag>§odata_id: Id§odata_type: Type§description: Option<Description>§members: Vec<IdRef>The members of this collection.
members_odata_count: Count§members_odata_next_link: Option<NextLink>§name: Name§oem: Option<Oem>Trait Implementations§
Source§impl Clone for FanCollection
impl Clone for FanCollection
Source§fn clone(&self) -> FanCollection
fn clone(&self) -> FanCollection
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 FanCollection
impl Debug for FanCollection
Source§impl Default for FanCollection
impl Default for FanCollection
Source§fn default() -> FanCollection
fn default() -> FanCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FanCollection
impl<'de> Deserialize<'de> for FanCollection
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FanCollection, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FanCollection, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Metadata<'static> for FanCollection
impl Metadata<'static> for FanCollection
Source§const JSON_SCHEMA: &'static str = "FanCollection.json"
const JSON_SCHEMA: &'static str = "FanCollection.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Source§impl Serialize for FanCollection
impl Serialize for FanCollection
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for FanCollection
impl RefUnwindSafe for FanCollection
impl Send for FanCollection
impl Sync for FanCollection
impl Unpin for FanCollection
impl UnwindSafe for FanCollection
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