pub struct EpInfo {
pub name: String,
pub is_registered: bool,
}Expand description
Information about an available execution provider.
Fields§
§name: StringThe name of the execution provider.
is_registered: boolWhether this EP is currently registered and ready for use.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EpInfo
impl<'de> Deserialize<'de> for EpInfo
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
Auto Trait Implementations§
impl Freeze for EpInfo
impl RefUnwindSafe for EpInfo
impl Send for EpInfo
impl Sync for EpInfo
impl Unpin for EpInfo
impl UnsafeUnpin for EpInfo
impl UnwindSafe for EpInfo
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