pub struct FpgaReconfigurationSlot {
pub acceleration_function: Option<IdRef>,
pub programmable_from_host: Option<bool>,
pub slot_id: Option<String>,
pub uuid: Option<UUID>,
}
Expand description
This type describes the FPGA reconfiguration slot. An FPGA uses a reconfiguration slot to contain an acceleration function that can change as the FPGA is provisioned.
Fields§
§acceleration_function: Option<IdRef>
§programmable_from_host: Option<bool>
An indication of whether the reconfiguration slot can be reprogrammed from the host by using system software.
slot_id: Option<String>
The FPGA reconfiguration slot identifier.
uuid: Option<UUID>
Trait Implementations§
Source§impl Clone for FpgaReconfigurationSlot
impl Clone for FpgaReconfigurationSlot
Source§fn clone(&self) -> FpgaReconfigurationSlot
fn clone(&self) -> FpgaReconfigurationSlot
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FpgaReconfigurationSlot
impl Debug for FpgaReconfigurationSlot
Source§impl Default for FpgaReconfigurationSlot
impl Default for FpgaReconfigurationSlot
Source§impl<'de> Deserialize<'de> for FpgaReconfigurationSlot
impl<'de> Deserialize<'de> for FpgaReconfigurationSlot
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 Metadata<'static> for FpgaReconfigurationSlot
impl Metadata<'static> for FpgaReconfigurationSlot
Source§const JSON_SCHEMA: &'static str = "Processor.v1_18_0.json"
const JSON_SCHEMA: &'static str = "Processor.v1_18_0.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.
Auto Trait Implementations§
impl Freeze for FpgaReconfigurationSlot
impl RefUnwindSafe for FpgaReconfigurationSlot
impl Send for FpgaReconfigurationSlot
impl Sync for FpgaReconfigurationSlot
impl Unpin for FpgaReconfigurationSlot
impl UnwindSafe for FpgaReconfigurationSlot
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