pub enum FPGAFamily {
Show 14 variants
IntelArria10,
IntelStratix10,
IntelCyclone5,
IntelAgilex,
XilinxKintex7,
XilinxVirtex7,
XilinxZynq7000,
XilinxZynqUltraScale,
XilinxKintexUltraScale,
XilinxVirtexUltraScale,
XilinxVersal,
MicrosemiPolarFire,
LatticeECP5,
Unknown(String),
}
Expand description
FPGA family/series information
Variants§
IntelArria10
IntelStratix10
IntelCyclone5
IntelAgilex
XilinxKintex7
XilinxVirtex7
XilinxZynq7000
XilinxZynqUltraScale
XilinxKintexUltraScale
XilinxVirtexUltraScale
XilinxVersal
MicrosemiPolarFire
LatticeECP5
Unknown(String)
Trait Implementations§
Source§impl Clone for FPGAFamily
impl Clone for FPGAFamily
Source§fn clone(&self) -> FPGAFamily
fn clone(&self) -> FPGAFamily
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 FPGAFamily
impl Debug for FPGAFamily
Source§impl<'de> Deserialize<'de> for FPGAFamily
impl<'de> Deserialize<'de> for FPGAFamily
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 Display for FPGAFamily
impl Display for FPGAFamily
Source§impl PartialEq for FPGAFamily
impl PartialEq for FPGAFamily
Source§impl Serialize for FPGAFamily
impl Serialize for FPGAFamily
impl Eq for FPGAFamily
impl StructuralPartialEq for FPGAFamily
Auto Trait Implementations§
impl Freeze for FPGAFamily
impl RefUnwindSafe for FPGAFamily
impl Send for FPGAFamily
impl Sync for FPGAFamily
impl Unpin for FPGAFamily
impl UnwindSafe for FPGAFamily
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